author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Mon, 31 Aug 2009 14:37:48 +0200 | |
branch | stable |
changeset 3061 | e3e5ab4b987a |
parent 1977 | 606923dff11b |
child 2773 | b2530e3e0afb |
child 4212 | ab6573088b4a |
permissions | -rw-r--r-- |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
1 |
""" |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
2 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
3 |
:organization: Logilab |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
7 |
""" |
0 | 8 |
import sys |
9 |
from StringIO import StringIO |
|
10 |
from logilab.common.testlib import TestCase, unittest_main |
|
11 |
from cubicweb.devtools import init_test_database |
|
12 |
||
13 |
||
14 |
from cubicweb.server.checkintegrity import check |
|
15 |
||
16 |
repo, cnx = init_test_database('sqlite') |
|
17 |
||
18 |
class CheckIntegrityTC(TestCase): |
|
19 |
def test(self): |
|
20 |
sys.stderr = sys.stdout = StringIO() |
|
21 |
try: |
|
22 |
check(repo, cnx, ('entities', 'relations', 'text_index', 'metadata'), |
|
23 |
True, True) |
|
24 |
finally: |
|
25 |
sys.stderr = sys.__stderr__ |
|
26 |
sys.stdout = sys.__stdout__ |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
27 |
|
0 | 28 |
if __name__ == '__main__': |
29 |
unittest_main() |