summaryrefslogtreecommitdiff
path: root/tests/type/__main__.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2017-02-12 10:54:00 +0100
committerIlya Etingof <etingof@gmail.com>2017-02-12 10:54:00 +0100
commit22e53a32753acfdc4101f6cb3f4d45397d72ce5c (patch)
tree574d16c8c1d71091db51798f1ec8c75a6494749e /tests/type/__main__.py
parent1bbefa9040dcd38195bb94bfeb85349b441659bd (diff)
downloadpyasn1-git-22e53a32753acfdc4101f6cb3f4d45397d72ce5c.tar.gz
test dir renamed into tests
Diffstat (limited to 'tests/type/__main__.py')
-rw-r--r--tests/type/__main__.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/type/__main__.py b/tests/type/__main__.py
new file mode 100644
index 0000000..bd89f8b
--- /dev/null
+++ b/tests/type/__main__.py
@@ -0,0 +1,23 @@
+#
+# This file is part of pyasn1 software.
+#
+# Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com>
+# License: http://pyasn1.sf.net/license.html
+#
+try:
+ import unittest2 as unittest
+
+except ImportError:
+ import unittest
+
+suite = unittest.TestLoader().loadTestsFromNames(
+ ['tests.type.test_constraint.suite',
+ 'tests.type.test_namedtype.suite',
+ 'tests.type.test_namedval.suite',
+ 'tests.type.test_tag.suite',
+ 'tests.type.test_univ.suite']
+)
+
+
+if __name__ == '__main__':
+ unittest.TextTestRunner(verbosity=2).run(suite)