From 6378c347994c902f7d4e65e54f2b76d01ce603d2 Mon Sep 17 00:00:00 2001 From: Jason Kirtland Date: Tue, 23 Oct 2007 07:38:07 +0000 Subject: - Added initial version of MaxDB dialect. - All optional test Sequences are now optional=True --- 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 55f3f6bc5..03673eb4d 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', 'sybase') + @testing.unsupported('maxdb', 'oracle', 'sybase') def setUpAll(self): global unicode_bind, metadata, t1, t2, t3 @@ -55,20 +55,20 @@ class UnicodeSchemaTest(PersistTest): ) metadata.create_all() - @testing.unsupported('oracle', 'sybase') + @testing.unsupported('maxdb', 'oracle', 'sybase') def tearDown(self): if metadata.tables: t3.delete().execute() t2.delete().execute() t1.delete().execute() - @testing.unsupported('oracle', 'sybase') + @testing.unsupported('maxdb', 'oracle', 'sybase') def tearDownAll(self): global unicode_bind metadata.drop_all() del unicode_bind - @testing.unsupported('oracle', 'sybase') + @testing.unsupported('maxdb', 'oracle', 'sybase') def test_insert(self): t1.insert().execute({u'méil':1, u'\u6e2c\u8a66':5}) t2.insert().execute({'a':1, 'b':1}) @@ -81,7 +81,7 @@ class UnicodeSchemaTest(PersistTest): assert t2.select().execute().fetchall() == [(1, 1)] assert t3.select().execute().fetchall() == [(1, 5, 1, 1)] - @testing.unsupported('oracle', 'sybase') + @testing.unsupported('maxdb', '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