From: Mike Bayer Date: Wed, 30 Jan 2008 21:31:32 +0000 (+0000) Subject: moved default escaping test to its own test so oracle gets it X-Git-Tag: rel_0_4_3~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d2042cc2b451f79b102abcae89ed82e768da590;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git moved default escaping test to its own test so oracle gets it --- diff --git a/test/sql/unicode.py b/test/sql/unicode.py index 81b33865bc..97493c3bbc 100644 --- a/test/sql/unicode.py +++ b/test/sql/unicode.py @@ -112,8 +112,10 @@ class UnicodeSchemaTest(PersistTest): meta.drop_all() metadata.create_all() +class EscapesDefaultsTest(testing.PersistTest): @testing.fails_on_everything_except('postgres', 'firebird', 'oracle') def test_default_exec(self): + metadata = MetaData(testing.db) t1 = Table('t1', metadata, Column(u'special_col', Integer, Sequence('special_col'), primary_key=True)) t1.create()