[SQL-CVS] SQLObject/tests test.py,1.17,1.18
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <ian...@us...> - 2003-06-28 22:20:57
|
Update of /cvsroot/sqlobject/SQLObject/tests In directory sc8-pr-cvs1:/tmp/cvs-serv1615 Modified Files: test.py Log Message: Tweak new-style naming Index: test.py =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/tests/test.py,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** test.py 26 Jun 2003 08:33:56 -0000 1.17 --- test.py 28 Jun 2003 22:20:55 -0000 1.18 *************** *** 9,14 **** class TestSO1(SQLObject): _columns = [ - StringCol('name', length=10), StringCol('passwd', length=10), ] --- 9,15 ---- class TestSO1(SQLObject): + name = StringCol(length=10) + _columns = [ StringCol('passwd', length=10), ] |