Rearranged files, added import paths
[cipher-tools.git] / test / test_doctests.py
diff --git a/test/test_doctests.py b/test/test_doctests.py
new file mode 100644 (file)
index 0000000..31f2a17
--- /dev/null
@@ -0,0 +1,7 @@
+import unittest
+import doctest
+import cipher
+
+def load_tests(loader, tests, ignore):
+    tests.addTests(doctest.DocTestSuite(cipher))
+    return tests