Ver código fonte

add crypto test suite

oz123 11 anos atrás
pai
commit
1ff30beb6b
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      pwman/tests/test_pwman.py

+ 2 - 0
pwman/tests/test_pwman.py

@@ -123,12 +123,14 @@ except SystemExit, e:
 
 import unittest
 from db_tests import DBTests
+from crypto_tests import CryptoTest
 
 
 def suite():
     loader = unittest.TestLoader()
     suite = unittest.TestSuite()
     suite.addTest(loader.loadTestsFromTestCase(DBTests))
+    suite.addTest(loader.loadTestsFromTestCase(CryptoTest))
     return suite
 
 if __name__ == '__main__':