server/test/unittest_tools.py
author Pierre-Yves David <pierre-yves.david@logilab.fr>
Thu, 04 Mar 2010 18:57:13 +0100
branchstable
changeset 4821 a198d6392466
parent 4212 ab6573088b4a
child 5421 8167de96c523
permissions -rw-r--r--
Added tag cubicweb-debian-version-3.6.1-2 for changeset 0a16f07112b9

"""

:organization: Logilab
:copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
"""
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()