tests/__init__.py
changeset 75 f94c06cfcc0e
child 77 bef7196f7682
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/__init__.py	Mon Feb 16 18:35:57 2009 +0200
@@ -0,0 +1,16 @@
+"""
+    Our collection of unittest's for the various modules
+"""
+
+import unittest
+import test_http
+
+def all_tests () :
+    """
+        Return a TestSuite with all test cases loaded
+    """
+    
+    return unittest.TestSuite(unittest.defaultTestLoader.loadTestsFromModule(module) for module in (
+        test_http,
+    ))
+