Trivial test for ClientAuthenticator get_chall_pref

This commit is contained in:
Seth Schoen 2015-02-15 23:25:41 -08:00
parent 9d090017b5
commit 4af0c197e1

View file

@ -41,6 +41,10 @@ class PerformTest(unittest.TestCase):
self.assertRaises(
errors.LetsEncryptClientAuthError, self.auth.perform, [unexpected])
def test_chall_pref(self):
self.assertEqual(
self.auth.get_chall_pref("example.com"), ["recoveryToken"])
class CleanupTest(unittest.TestCase):
"""Test the Authenticator cleanup function."""