summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLele Gaifax <lele@metapensiero.it>2008-05-12 10:10:21 +0000
committerLele Gaifax <lele@metapensiero.it>2008-05-12 10:10:21 +0000
commit52c965a188be4b47e01f8102442fe1748dec84f1 (patch)
treeee1a6c583d926c7d12c816271279b12708eabde7
parent5200cd16f5ffc481c76432be1d597f19a3812ec8 (diff)
downloadsqlalchemy-52c965a188be4b47e01f8102442fe1748dec84f1.tar.gz
Tagged two tests that fail under Firebird
-rw-r--r--test/sql/testtypes.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/sql/testtypes.py b/test/sql/testtypes.py
index d199890b6..3e9f1d631 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"""