diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-02-11 00:28:39 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-02-11 00:28:39 +0000 |
commit | c0b5a0446bf63bdac664421f49742f1156c1911a (patch) | |
tree | 9d7822f91325d23e512e77701c9f1280d968ea20 /test/orm/compile.py | |
parent | 90c572b513fb33cb5cd17134efb6018abc76bb1f (diff) | |
download | sqlalchemy-c0b5a0446bf63bdac664421f49742f1156c1911a.tar.gz |
- updated the naming scheme of the base test classes in test/testlib/testing.py;
tests extend from either TestBase or ORMTest, using additional mixins for
special assertion methods as needed
Diffstat (limited to 'test/orm/compile.py')
-rw-r--r-- | test/orm/compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/compile.py b/test/orm/compile.py index 5bcca57df..31b686062 100644 --- a/test/orm/compile.py +++ b/test/orm/compile.py @@ -5,7 +5,7 @@ from sqlalchemy.orm import * from testlib import * -class CompileTest(AssertMixin): +class CompileTest(TestBase, AssertsExecutionResults): """test various mapper compilation scenarios""" def tearDown(self): clear_mappers() |