1 from test
import test_support
4 crypt
= test_support
.import_module('crypt')
6 class CryptTestCase(unittest
.TestCase
):
9 c
= crypt
.crypt('mypassword', 'ab')
10 if test_support
.verbose
:
11 print 'Test encryption: ', c
14 test_support
.run_unittest(CryptTestCase
)
16 if __name__
== "__main__":