Show
Ignore:
Timestamp:
10/02/09 12:06:14 (3 years ago)
Author:
ged
Message:

Dropped support for python 2.3, SQLAlchemy 0.4 and deprecated stuff from Elixir
0.7

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/tests/test_options.py

    r480 r490  
    2626        p1 = Person(name='Daniel') 
    2727        session.commit() 
    28         session.clear() 
     28        session.expunge_all() 
    2929 
    3030        person = Person.query.first() 
     
    3232        session.commit() 
    3333        assert person.row_version == 2 
    34         session.clear() 
     34        session.expunge_all() 
    3535 
    3636        person = Person.query.first() 
     
    3838        session.commit() 
    3939        assert person.row_version == 3 
    40         session.clear() 
     40        session.expunge_all() 
    4141 
    4242        # check that a concurrent modification raises exception