From ddf875dd0c554660d3a4f58e261b03e22a92a625 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 10 Oct 2007 15:19:28 +0000 Subject: - initial sybase support checkin, [ticket:785] --- test/sql/unicode.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/sql/unicode.py') diff --git a/test/sql/unicode.py b/test/sql/unicode.py index 8174ab8b6..1b7698301 100644 --- a/test/sql/unicode.py +++ b/test/sql/unicode.py @@ -8,7 +8,7 @@ from testlib.engines import utf8_engine class UnicodeSchemaTest(PersistTest): - @testing.unsupported('oracle') + @testing.unsupported('oracle', 'sybase') def setUpAll(self): global unicode_bind, metadata, t1, t2, t3 @@ -46,20 +46,20 @@ class UnicodeSchemaTest(PersistTest): ) metadata.create_all() - @testing.unsupported('oracle') + @testing.unsupported('oracle', 'sybase') def tearDown(self): if metadata.tables: t3.delete().execute() t2.delete().execute() t1.delete().execute() - @testing.unsupported('oracle') + @testing.unsupported('oracle', 'sybase') def tearDownAll(self): global unicode_bind metadata.drop_all() del unicode_bind - @testing.unsupported('oracle') + @testing.unsupported('oracle', 'sybase') def test_insert(self): t1.insert().execute({u'méil':1, u'\u6e2c\u8a66':5}) t2.insert().execute({'a':1, 'b':1}) @@ -72,7 +72,7 @@ class UnicodeSchemaTest(PersistTest): assert t2.select().execute().fetchall() == [(1, 1)] assert t3.select().execute().fetchall() == [(1, 5, 1, 1)] - @testing.unsupported('oracle') + @testing.unsupported('oracle', 'sybase') def test_reflect(self): t1.insert().execute({u'méil':2, u'\u6e2c\u8a66':7}) t2.insert().execute({'a':2, 'b':2}) -- cgit v1.2.1