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/dialect/maxdb.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/dialect/maxdb.py')
-rw-r--r-- | test/dialect/maxdb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/maxdb.py b/test/dialect/maxdb.py index 4ec9faa6c..0a35f5470 100644 --- a/test/dialect/maxdb.py +++ b/test/dialect/maxdb.py @@ -15,7 +15,7 @@ from testlib import * # - datetime tests # - the orm/query 'test_has' destabilizes the server- cover here -class ReflectionTest(AssertMixin): +class ReflectionTest(TestBase, AssertsExecutionResults): """Extra reflection tests.""" __only_on__ = 'maxdb' @@ -168,7 +168,7 @@ class ReflectionTest(AssertMixin): except exceptions.DatabaseError: pass -class DBAPITest(AssertMixin): +class DBAPITest(TestBase, AssertsExecutionResults): """Asserts quirks in the native Python DB-API driver. If any of these fail, that's good- the bug is fixed! |