server/test/unittest_tools.py
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Thu, 13 Nov 2008 10:43:35 +0100
changeset 55 5ff3ca010290
parent 0 b97547f5f1fa
child 1802 d628defebc17
permissions -rw-r--r--
improve dot schema rendering by associating edge colors and label colors

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