]> git.phdru.name Git - sqlconvert.git/blobdiff - tests/__init__.py
Use pytest for testing
[sqlconvert.git] / tests / __init__.py
diff --git a/tests/__init__.py b/tests/__init__.py
deleted file mode 100644 (file)
index d26523d..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 as msg:
-        result = msg.args[0]
-    else:
-        result = 0
-    raise SystemExit(result)