summaryrefslogtreecommitdiff
path: root/tests/utest.py
diff options
context:
space:
mode:
authorBob Halley <halley@play-bow.org>2016-09-20 05:45:34 -0700
committerBob Halley <halley@play-bow.org>2016-09-20 05:45:34 -0700
commit34e2240a4b3a800331fd77c724bdca67d095a2bc (patch)
tree4d031a0cc63ddbba689e0b8c4dd630b7e053c570 /tests/utest.py
parentd0d43f95770eac75cfd8c5ba2b7ca7df7d14a3f0 (diff)
downloaddnspython-34e2240a4b3a800331fd77c724bdca67d095a2bc.tar.gz
redirect to dnspython
Diffstat (limited to 'tests/utest.py')
-rw-r--r--tests/utest.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/utest.py b/tests/utest.py
deleted file mode 100644
index f3bfaa9..0000000
--- a/tests/utest.py
+++ /dev/null
@@ -1,10 +0,0 @@
-import os.path
-import sys
-import unittest
-
-if __name__ == '__main__':
- sys.path.insert(0, os.path.realpath('..'))
- suites = unittest.defaultTestLoader.discover('.')
- if (not unittest.TextTestRunner(verbosity=2).run(suites).wasSuccessful()):
- sys.exit(1)
-