summaryrefslogtreecommitdiff
path: root/src/wsgiref/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/wsgiref/tests/__init__.py')
-rw-r--r--src/wsgiref/tests/__init__.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wsgiref/tests/__init__.py b/src/wsgiref/tests/__init__.py
new file mode 100644
index 0000000..8ada027
--- /dev/null
+++ b/src/wsgiref/tests/__init__.py
@@ -0,0 +1,18 @@
+from unittest import TestSuite, TestCase, makeSuite
+
+def test_suite():
+
+ #from wsgiref.tests import test_xyz
+
+ tests = [
+ #test_xyz.test_suite(),
+ ]
+
+ return TestSuite(tests)
+
+
+
+
+
+
+