summaryrefslogtreecommitdiff
path: root/test/sql/test_quote.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-03-27 16:27:27 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2011-03-27 16:27:27 -0400
commit68a350d462b6840d6623a89565f8febf3a997830 (patch)
tree4d3ea4d93d14738a1c5a418a37917f80a41cf85e /test/sql/test_quote.py
parenta3083eabf467e7f36db0850342758ce162c3eef8 (diff)
downloadsqlalchemy-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_quote.py')
-rw-r--r--test/sql/test_quote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_quote.py b/test/sql/test_quote.py
index b31e7dfb4..6caf55d91 100644
--- a/test/sql/test_quote.py
+++ b/test/sql/test_quote.py
@@ -3,7 +3,7 @@ from sqlalchemy import sql, schema
from sqlalchemy.sql import compiler
from test.lib import *
-class QuoteTest(TestBase, AssertsCompiledSQL):
+class QuoteTest(fixtures.TestBase, AssertsCompiledSQL):
__dialect__ = 'default'
@classmethod
@@ -182,7 +182,7 @@ class QuoteTest(TestBase, AssertsCompiledSQL):
'''SELECT "ImATable".col1, "ImATable"."from", "ImATable".louisville, "ImATable"."order" FROM "ImATable"''')
-class PreparerTest(TestBase):
+class PreparerTest(fixtures.TestBase):
"""Test the db-agnostic quoting services of IdentifierPreparer."""
def test_unformat(self):