Commit cd6d5ea5 authored by Roger E. Masse's avatar Roger E. Masse

Updated test_crypt test to jive with bwarsaw testing style

parent ebe2a942
......@@ -2,5 +2,11 @@
"""Simple test script for cryptmodule.c
Roger E. Masse
"""
verbose = 0
if __name__ == '__main__':
verbose = 1
import crypt
print 'Test encryption: ', crypt.crypt('mypassword', 'ab')
c = crypt.crypt('mypassword', 'ab')
if verbose:
print 'Test encryption: ', c
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment