From 33eae4a1405b1968ad486bfe3aefee7f7d631128 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 11 Feb 2011 11:24:54 -0500 Subject: make it more explicit in tests which dialect we want to use for things --- test/sql/test_generative.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/sql/test_generative.py') diff --git a/test/sql/test_generative.py b/test/sql/test_generative.py index c6f5dc05e..088162c8a 100644 --- a/test/sql/test_generative.py +++ b/test/sql/test_generative.py @@ -169,6 +169,8 @@ class TraversalTest(TestBase, AssertsExecutionResults): class ClauseTest(TestBase, AssertsCompiledSQL): """test copy-in-place behavior of various ClauseElements.""" + __dialect__ = 'default' + @classmethod def setup_class(cls): global t1, t2 @@ -471,6 +473,8 @@ class ClauseTest(TestBase, AssertsCompiledSQL): 'anon_1.col1') class ClauseAdapterTest(TestBase, AssertsCompiledSQL): + __dialect__ = 'default' + @classmethod def setup_class(cls): global t1, t2 @@ -858,6 +862,8 @@ class ClauseAdapterTest(TestBase, AssertsCompiledSQL): ) class SpliceJoinsTest(TestBase, AssertsCompiledSQL): + __dialect__ = 'default' + @classmethod def setup_class(cls): global table1, table2, table3, table4 @@ -929,6 +935,8 @@ class SpliceJoinsTest(TestBase, AssertsCompiledSQL): class SelectTest(TestBase, AssertsCompiledSQL): """tests the generative capability of Select""" + __dialect__ = 'default' + @classmethod def setup_class(cls): global t1, t2 @@ -1083,6 +1091,8 @@ class SelectTest(TestBase, AssertsCompiledSQL): class InsertTest(TestBase, AssertsCompiledSQL): """Tests the generative capability of Insert""" + __dialect__ = 'default' + # fixme: consolidate converage from elsewhere here and expand @classmethod -- cgit v1.2.1