summaryrefslogtreecommitdiff
path: root/tests/type/__main__.py
diff options
context:
space:
mode:
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)