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/mysql.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/mysql.py')
-rw-r--r-- | test/dialect/mysql.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/mysql.py b/test/dialect/mysql.py index 2b589f625..e1bd47d29 100644 --- a/test/dialect/mysql.py +++ b/test/dialect/mysql.py @@ -6,7 +6,7 @@ from sqlalchemy.databases import mysql from testlib import * -class TypesTest(AssertMixin): +class TypesTest(TestBase, AssertsExecutionResults): "Test MySQL column types" __only_on__ = 'mysql' @@ -762,7 +762,7 @@ class TypesTest(AssertMixin): self.assertEqual(got, wanted) -class SQLTest(SQLCompileTest): +class SQLTest(TestBase, AssertsCompiledSQL): """Tests MySQL-dialect specific compilation.""" __dialect__ = mysql.dialect() |