]> git.phdru.name Git - cookiecutter.git/blobdiff - project_template/tests/__init__.py
Use pytest for testing
[cookiecutter.git] / project_template / tests / __init__.py
diff --git a/project_template/tests/__init__.py b/project_template/tests/__init__.py
deleted file mode 100644 (file)
index 3c09ede..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-
-import unittest
-
-__all__ = ['TestCase', 'main']
-
-
-class TestCase(unittest.TestCase):
-    def setUp(self):
-        pass
-
-    def tearDown(self):
-        pass
-
-
-def main():
-    try:
-        unittest.main(testRunner=unittest.TextTestRunner())
-    except SystemExit, msg:
-        result = msg.args[0]
-    else:
-        result = 0
-    raise SystemExit(result)