server/test/unittest_tools.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 27 May 2009 11:18:46 +0200
branchstable
changeset 1950 ab7a41b2cd26
parent 1802 d628defebc17
child 1977 606923dff11b
permissions -rw-r--r--
reactivate skipped tests due to sqlite bug which is now fixed (sqlite 3.6.13)

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