diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-07-12 18:38:55 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-07-12 18:38:55 +0000 |
commit | 6c851956b549f30c8d5936ee542a1c1f2c5592df (patch) | |
tree | 008033f3ea906e85d941d0354cfe3a57794d0d2a /test/orm/alltests.py | |
parent | 81f42181f431eb8ea96c94ee8a2d798f11a296e7 (diff) | |
download | sqlalchemy-6c851956b549f30c8d5936ee542a1c1f2c5592df.tar.gz |
- converted mapper.py unit test to 0.4's four separate mapper.py, query.py, eager_relations.py, lazy_relations.py.
tests 0.4 forwards compatibility for [ticket:631]
- fixed "reset_joinpoint()" in query to actually work, when the same table appears in two join()s it reuses that
same table as a joinpoint the way 0.4 does.
Diffstat (limited to 'test/orm/alltests.py')
-rw-r--r-- | test/orm/alltests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/orm/alltests.py b/test/orm/alltests.py index 46eeb3ce9..35650c136 100644 --- a/test/orm/alltests.py +++ b/test/orm/alltests.py @@ -5,6 +5,9 @@ def suite(): modules_to_test = ( 'orm.attributes', 'orm.mapper', + 'orm.query', + 'orm.lazy_relations', + 'orm.eager_relations', 'orm.generative', 'orm.lazytest1', 'orm.eagertest1', |