From: Lele Gaifax Date: Mon, 12 May 2008 10:10:21 +0000 (+0000) Subject: Tagged two tests that fail under Firebird X-Git-Tag: rel_0_5beta1~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52c965a188be4b47e01f8102442fe1748dec84f1;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Tagged two tests that fail under Firebird --- diff --git a/test/sql/testtypes.py b/test/sql/testtypes.py index d199890b61..3e9f1d6314 100644 --- a/test/sql/testtypes.py +++ b/test/sql/testtypes.py @@ -382,6 +382,7 @@ class UnicodeTest(TestBase, AssertsExecutionResults): testing.db.engine.dialect.convert_unicode = prev_assert @testing.unsupported('oracle', 'FIXME: unknown, verify not fails_on') + @testing.fails_on('firebird') # "Data type unknown" on the parameter def testlength(self): """checks the database correctly understands the length of a unicode string""" teststr = u'aaa\x1234' @@ -505,7 +506,7 @@ class ExpressionTest(TestBase, AssertsExecutionResults): assert expr.right.type.__class__ == test_table.c.avalue.type.__class__ assert testing.db.execute(test_table.select().where(expr), {"somevalue":25}).fetchall() == [(1, 'somedata', datetime.date(2007, 10, 15), 25)] - + @testing.fails_on('firebird') # "Data type unknown" on the parameter def test_operator_adapt(self): """test type-based overloading of operators"""