server/test/unittest_tools.py
changeset 0 b97547f5f1fa
child 1802 d628defebc17
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/server/test/unittest_tools.py	Wed Nov 05 15:52:50 2008 +0100
@@ -0,0 +1,11 @@
+from logilab.common.testlib import TestCase, unittest_main
+
+class ImportTC(TestCase):
+    def test(self):
+        # the minimal test: module is importable...
+        import cubicweb.server.server
+        import cubicweb.server.checkintegrity
+        import cubicweb.server.serverctl
+        
+if __name__ == '__main__':
+    unittest_main()