diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-07-27 04:08:53 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-07-27 04:08:53 +0000 |
commit | ed4fc64bb0ac61c27bc4af32962fb129e74a36bf (patch) | |
tree | c1cf2fb7b1cafced82a8898e23d2a0bf5ced8526 /test/orm/entity.py | |
parent | 3a8e235af64e36b3b711df1f069d32359fe6c967 (diff) | |
download | sqlalchemy-ed4fc64bb0ac61c27bc4af32962fb129e74a36bf.tar.gz |
merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintenance branch in branches/rel_0_3.
Diffstat (limited to 'test/orm/entity.py')
-rw-r--r-- | test/orm/entity.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/test/orm/entity.py b/test/orm/entity.py index 86486cafc..da76e8df0 100644 --- a/test/orm/entity.py +++ b/test/orm/entity.py @@ -1,11 +1,9 @@ -from testbase import PersistTest, AssertMixin -import unittest -from sqlalchemy import * import testbase +from sqlalchemy import * +from sqlalchemy.orm import * from sqlalchemy.ext.sessioncontext import SessionContext - -from tables import * -import tables +from testlib import * +from testlib.tables import * class EntityTest(AssertMixin): """tests mappers that are constructed based on "entity names", which allows the same class |