31f2a17cdd50627f46484cc9f762d871b6c5619b
[cipher-tools.git] / test / test_doctests.py
1 import unittest
2 import doctest
3 import cipher
4
5 def load_tests(loader, tests, ignore):
6 tests.addTests(doctest.DocTestSuite(cipher))
7 return tests