diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 16:27:27 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-03-27 16:27:27 -0400 |
| commit | 68a350d462b6840d6623a89565f8febf3a997830 (patch) | |
| tree | 4d3ea4d93d14738a1c5a418a37917f80a41cf85e /test/sql/test_labels.py | |
| parent | a3083eabf467e7f36db0850342758ce162c3eef8 (diff) | |
| download | sqlalchemy-68a350d462b6840d6623a89565f8febf3a997830.tar.gz | |
- remove test.sql._base, test.engine._base, test.orm._base, move those classes to a new test.lib.fixtures module
- move testing.TestBase to test.lib.fixtures
- massive search and replace
Diffstat (limited to 'test/sql/test_labels.py')
| -rw-r--r-- | test/sql/test_labels.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_labels.py b/test/sql/test_labels.py index 9160aa3ee..9f26d899f 100644 --- a/test/sql/test_labels.py +++ b/test/sql/test_labels.py @@ -6,7 +6,7 @@ from sqlalchemy.engine import default IDENT_LENGTH = 29 -class LabelTypeTest(TestBase): +class LabelTypeTest(fixtures.TestBase): def test_type(self): m = MetaData() t = Table('sometable', m, @@ -15,7 +15,7 @@ class LabelTypeTest(TestBase): assert isinstance(t.c.col1.label('hi').type, Integer) assert isinstance(select([t.c.col2]).as_scalar().label('lala').type, Float) -class LongLabelsTest(TestBase, AssertsCompiledSQL): +class LongLabelsTest(fixtures.TestBase, AssertsCompiledSQL): @classmethod def setup_class(cls): global metadata, table1, table2, maxlen |
