diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-10-10 15:19:28 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-10-10 15:19:28 +0000 |
| commit | ddf875dd0c554660d3a4f58e261b03e22a92a625 (patch) | |
| tree | 445adadb0e31238d1e856ad09182cc9380951f70 /test/sql/unicode.py | |
| parent | 74064ce9fd8e08619fb376ac506311d96a7ba85e (diff) | |
| download | sqlalchemy-ddf875dd0c554660d3a4f58e261b03e22a92a625.tar.gz | |
- initial sybase support checkin, [ticket:785]
Diffstat (limited to 'test/sql/unicode.py')
| -rw-r--r-- | test/sql/unicode.py | 10 |
1 files changed, 5 insertions, 5 deletions
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}) |
