diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-13 20:00:38 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-13 20:00:38 +0000 |
| commit | 66142098952f6c1027dbede243a25c003671dee3 (patch) | |
| tree | 9139f22ebc8c276ae3ddaa018c842335b5f62f45 /test/testlib/__init__.py | |
| parent | 799f45866789271301d5b09a175c789d1e4f6e95 (diff) | |
| download | sqlalchemy-66142098952f6c1027dbede243a25c003671dee3.tar.gz | |
- generalized a SQLCompileTest out of select.py, installed
into dialect/mssql.py, dialect/oracle.py, sql/generative.py
- fixed oracle issues [ticket:732], [ticket:733], [ticket:734]
Diffstat (limited to 'test/testlib/__init__.py')
| -rw-r--r-- | test/testlib/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testlib/__init__.py b/test/testlib/__init__.py index 3967863b8..bfc2ba04b 100644 --- a/test/testlib/__init__.py +++ b/test/testlib/__init__.py @@ -6,11 +6,11 @@ Load after sqlalchemy imports to use instrumented stand-ins like Table. import testlib.config from testlib.schema import Table, Column import testlib.testing as testing -from testlib.testing import PersistTest, AssertMixin, ORMTest +from testlib.testing import PersistTest, AssertMixin, ORMTest, SQLCompileTest import testlib.profiling import testlib.engines __all__ = ('testing', 'Table', 'Column', - 'PersistTest', 'AssertMixin', 'ORMTest') + 'PersistTest', 'AssertMixin', 'ORMTest', 'SQLCompileTest') |
