server/test/unittest_tools.py
author Katia Saurfelt <katia.saurfelt@logilab.fr>
Tue, 19 May 2009 14:31:42 +0200 (2009-05-19)
branchstable
changeset 1868 af1ae863606d
parent 1802 d628defebc17
child 1977 606923dff11b
permissions -rw-r--r--
update handleFormValidationResponse calls
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()