author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Mon, 18 May 2009 18:49:05 +0200 | |
branch | stable |
changeset 1851 | c707419980f8 |
parent 1802 | d628defebc17 |
child 1977 | 606923dff11b |
permissions | -rw-r--r-- |
0 | 1 |
from logilab.common.testlib import TestCase, unittest_main |
2 |
||
3 |
class ImportTC(TestCase): |
|
4 |
def test(self): |
|
5 |
# the minimal test: module is importable... |
|
6 |
import cubicweb.server.server |
|
7 |
import cubicweb.server.checkintegrity |
|
8 |
import cubicweb.server.serverctl |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
9 |
|
0 | 10 |
if __name__ == '__main__': |
11 |
unittest_main() |