[SQL-CVS] SQLObject/tests test.py,1.23,1.24
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <ian...@us...> - 2003-09-07 07:17:59
|
Update of /cvsroot/sqlobject/SQLObject/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv12054/tests
Modified Files:
test.py
Log Message:
Added expiring and syncing. Transactions expire their objects
whenever there's a rollback.
Index: test.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/tests/test.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** test.py 7 Sep 2003 07:05:26 -0000 1.23
--- test.py 7 Sep 2003 07:17:50 -0000 1.24
***************
*** 229,233 ****
class TestSOTrans(SQLObject):
! _cacheValues = False
name = StringCol(length=10, alternateID=True)
_defaultOrderBy = 'name'
--- 229,233 ----
class TestSOTrans(SQLObject):
! #_cacheValues = False
name = StringCol(length=10, alternateID=True)
_defaultOrderBy = 'name'
|