Changeset 5196
- Timestamp:
- 08/21/08 21:46:17 (3 months ago)
- Files:
-
- branches/1.1/turbogears/testutil.py (modified) (1 diff)
- branches/1.5/turbogears/testutil.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/turbogears/testutil.py
r5176 r5196 304 304 sqlobject.SQLObject) and item != sqlobject.SQLObject \ 305 305 and item != InheritableSQLObject: 306 item.dropTable(ifExists=True )306 item.dropTable(ifExists=True, cascade=True) 307 307 308 308 def unmount(): branches/1.5/turbogears/testutil.py
r5185 r5196 190 190 sqlobject.SQLObject) and item != sqlobject.SQLObject \ 191 191 and item != InheritableSQLObject: 192 item.dropTable(ifExists=True )192 item.dropTable(ifExists=True, cascade=True) 193 193 194 194 def unmount():