summaryrefslogtreecommitdiff
path: root/test/orm/entity.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-02-11 00:28:39 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-02-11 00:28:39 +0000
commitc0b5a0446bf63bdac664421f49742f1156c1911a (patch)
tree9d7822f91325d23e512e77701c9f1280d968ea20 /test/orm/entity.py
parent90c572b513fb33cb5cd17134efb6018abc76bb1f (diff)
downloadsqlalchemy-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/entity.py')
-rw-r--r--test/orm/entity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/entity.py b/test/orm/entity.py
index c56d22f9d..760f8fce9 100644
--- a/test/orm/entity.py
+++ b/test/orm/entity.py
@@ -5,7 +5,7 @@ from sqlalchemy.ext.sessioncontext import SessionContext
from testlib import *
from testlib.tables import *
-class EntityTest(AssertMixin):
+class EntityTest(TestBase, AssertsExecutionResults):
"""tests mappers that are constructed based on "entity names", which allows the same class
to have multiple primary mappers """