Update of /cvsroot/sqlobject/SQLObject/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv32496/tests
Modified Files:
SQLObjectTest.py
Log Message:
* Reorganized SQLObjectMeta.__new__ (simplified)
* New Style module, that allows different ways to map Python attributes
to database names (instead of columnName -> column_name)
Index: SQLObjectTest.py
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/tests/SQLObjectTest.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** SQLObjectTest.py 19 Apr 2003 00:54:25 -0000 1.8
--- SQLObjectTest.py 21 Apr 2003 22:37:17 -0000 1.9
***************
*** 70,74 ****
elif hasattr(c, 'createTable'):
c.createTable(ifNotExists=True)
! #__connection__.debug = 0
self.inserts()
__connection__.debug = self.debugSQL
--- 70,74 ----
elif hasattr(c, 'createTable'):
c.createTable(ifNotExists=True)
! #__connection__.debug = self.debugSQL
self.inserts()
__connection__.debug = self.debugSQL
|