summaryrefslogtreecommitdiff
path: root/test/sql/query.py
diff options
context:
space:
mode:
authorLele Gaifax <lele@metapensiero.it>2008-05-13 09:06:27 +0000
committerLele Gaifax <lele@metapensiero.it>2008-05-13 09:06:27 +0000
commit78c9603af43f21c3b5b2ef199ce2c7e224f2bae9 (patch)
tree1a378db34ce822b72d1fba83fd5f2059b4e328bb /test/sql/query.py
parentb0fd5ac899c7e2f2190c81622b3606d87856e824 (diff)
downloadsqlalchemy-78c9603af43f21c3b5b2ef199ce2c7e224f2bae9.tar.gz
Tag some tests that fail under Firebird
Diffstat (limited to 'test/sql/query.py')
-rw-r--r--test/sql/query.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/sql/query.py b/test/sql/query.py
index f9ed7f540..4a1d672cd 100644
--- a/test/sql/query.py
+++ b/test/sql/query.py
@@ -140,6 +140,7 @@ class QueryTest(TestBase):
l.append(row)
self.assert_(len(l) == 3)
+ @testing.fails_on('firebird') # Data type unknown
@testing.requires.subqueries
def test_anonymous_rows(self):
users.insert().execute(
@@ -245,7 +246,7 @@ class QueryTest(TestBase):
assert len(r) == 1
def test_bindparam_detection(self):
- dialect = default.DefaultDialect(paramstyle='qmark')
+ dialect = default.DefaultDialect(paramstyle='qmark')
prep = lambda q: str(sql.text(q).compile(dialect=dialect))
def a_eq(got, wanted):
@@ -523,7 +524,7 @@ class QueryTest(TestBase):
finally:
shadowed.drop(checkfirst=True)
- @testing.fails_on('maxdb')
+ @testing.fails_on('firebird', 'maxdb')
def test_in_filtering(self):
"""test the behavior of the in_() function."""