server/test/unittest_tools.py
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Wed, 18 Feb 2009 00:03:27 +0100
branchtls-sprint
changeset 731 ac4a94e50b60
parent 0 b97547f5f1fa
child 1802 d628defebc17
permissions -rw-r--r--
some more s/__selectors__/__select__ but still more to come

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()