diff options
author | Brett Cannon <bcannon@gmail.com> | 2011-02-22 21:48:06 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2011-02-22 21:48:06 (GMT) |
commit | daa5799cb88667855430bb49f428a4ff6c093456 (patch) | |
tree | fc8f786461e9a7a1543de9de674a2d4af4e2fbe6 /Lib/test/test_crypt.py | |
parent | 543b7f3ee90b089d1dea485c36a12ff26c8c55e1 (diff) | |
download | cpython-daa5799cb88667855430bb49f428a4ff6c093456.zip cpython-daa5799cb88667855430bb49f428a4ff6c093456.tar.gz cpython-daa5799cb88667855430bb49f428a4ff6c093456.tar.bz2 |
Make Lib/crypt.py meet PEP 8 standards. This also led to a tweak in the new API
by making methods() into a module attribute as it is statically calculated.
Diffstat (limited to 'Lib/test/test_crypt.py')
-rw-r--r-- | Lib/test/test_crypt.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Lib/test/test_crypt.py b/Lib/test/test_crypt.py index 306296f..dc107d8 100644 --- a/Lib/test/test_crypt.py +++ b/Lib/test/test_crypt.py @@ -11,24 +11,23 @@ class CryptTestCase(unittest.TestCase): print('Test encryption: ', c) def test_salt(self): - self.assertEqual(len(crypt.saltchars), 64) - for method in crypt.methods(): + self.assertEqual(len(crypt._saltchars), 64) + for method in crypt.methods: salt = crypt.mksalt(method) self.assertEqual(len(salt), method.salt_chars + (3 if method.ident else 0)) def test_saltedcrypt(self): - for method in crypt.methods(): + for method in crypt.methods: pw = crypt.crypt('assword', method) self.assertEqual(len(pw), method.total_size) pw = crypt.crypt('assword', crypt.mksalt(method)) self.assertEqual(len(pw), method.total_size) def test_methods(self): - # Gurantee that METHOD_CRYPT is the last method in crypt.methods(). - methods = crypt.methods() - self.assertTrue(len(methods) >= 1) - self.assertEqual(crypt.METHOD_CRYPT, methods[-1]) + # Gurantee that METHOD_CRYPT is the last method in crypt.methods. + self.assertTrue(len(crypt.methods) >= 1) + self.assertEqual(crypt.METHOD_CRYPT, crypt.methods[-1]) def test_main(): support.run_unittest(CryptTestCase) |