server/test/unittest_tools.py
author Arthur Lutz <arthur.lutz@logilab.fr>
Thu, 04 Apr 2019 13:45:23 +0200
branch3.0
changeset 12558 29291282facc
parent 0 b97547f5f1fa
child 1802 d628defebc17
permissions -rw-r--r--
Merging heads of old, closed branch

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