Update of /cvsroot/modeling/ProjectModeling/Modeling/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv20152
Modified Files:
test_AdaptorLayer.py
Log Message:
Forgot to include SQLite as a valid adaptor name
Index: test_AdaptorLayer.py
===================================================================
RCS file: /cvsroot/modeling/ProjectModeling/Modeling/tests/test_AdaptorLayer.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** test_AdaptorLayer.py 30 Jul 2003 17:14:36 -0000 1.2
--- test_AdaptorLayer.py 30 Jul 2003 17:17:36 -0000 1.3
***************
*** 124,128 ****
-h Prints this message
-p enables profiling
! -d sets the database adaptor to use: Postgresql (default) or MySQL
IMPORTANT: these tests requires that test_EditingContext_Global.py was
--- 124,128 ----
-h Prints this message
-p enables profiling
! -d sets the database adaptor to use: Postgresql (default), MySQL or SQLite
IMPORTANT: these tests requires that test_EditingContext_Global.py was
***************
*** 149,153 ****
if k=='-p': profile=1; continue
if k=='-d':
! if v not in ('Postgresql', 'MySQL'): usage(me); return 1
database_cfg='%s.cfg'%v
continue
--- 149,153 ----
if k=='-p': profile=1; continue
if k=='-d':
! if v not in ('Postgresql', 'MySQL', 'SQLite'): usage(me); return 1
database_cfg='%s.cfg'%v
continue
|