]> git.phdru.name Git - cookiecutter.git/blobdiff - project_template/tests/test_test.py
Update: makefiles, sphinx docs, tests
[cookiecutter.git] / project_template / tests / test_test.py
diff --git a/project_template/tests/test_test.py b/project_template/tests/test_test.py
new file mode 100755 (executable)
index 0000000..422d67d
--- /dev/null
@@ -0,0 +1,14 @@
+#! /usr/bin/env python
+
+
+import unittest
+from tests import main
+
+
+class TestFormat(unittest.TestCase):
+    def test_test(self):
+        self.assertEqual()
+
+
+if __name__ == "__main__":
+    main()