Changeset 490 for elixir/trunk/tests/test_properties.py
- Timestamp:
- 10/02/09 12:06:14 (3 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/tests/test_properties.py (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/tests/test_properties.py
r467 r490 39 39 40 40 session.commit() 41 session. clear()41 session.expunge_all() 42 42 43 43 for tag in Tag.query.all(): … … 57 57 58 58 session.commit() 59 session. clear()59 session.expunge_all() 60 60 61 61 for tag in Tag.query.all(): … … 99 99 100 100 session.commit() 101 session. clear()101 session.expunge_all() 102 102 103 103 category = Category.query.one() … … 122 122 123 123 session.commit() 124 session. clear()124 session.expunge_all() 125 125 126 126 for tag in Tag.query.all(): … … 166 166 167 167 session.commit() 168 session. clear()168 session.expunge_all() 169 169 170 170 # test the synonym itself (ie querying) … … 195 195 ) 196 196 197 session.commit(); session. clear()197 session.commit(); session.expunge_all() 198 198 199 199 p = Person.get_by(name='Alexandre da Silva') … … 204 204 205 205 u.email_address = 'new@z.com' 206 session.commit(); session. clear()206 session.commit(); session.expunge_all() 207 207 208 208 p = Person.get_by(name='Johann Felipe Voigt') … … 219 219 a1 = A(name='a1') 220 220 221 session.commit(); session. clear()221 session.commit(); session.expunge_all() 222 222 223 223 a = A.query.one()
