server/test/unittest_tools.py
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 14 May 2009 16:28:57 +0200
changeset 1824 c9c492787a8a
parent 1802 d628defebc17
child 1977 606923dff11b
permissions -rw-r--r--
Added tag cubicweb-version-3_2_0 for changeset c14231e3a4f9

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