summaryrefslogtreecommitdiff
path: root/test/orm/query.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2008-05-14 22:09:23 +0000
committerJason Kirtland <jek@discorporate.us>2008-05-14 22:09:23 +0000
commitdd20ca5cb9eb0361f22023437d25a5bbb53f6871 (patch)
treef033f05e3a273456d7e6100ce1897ba89849168f /test/orm/query.py
parentb2504db4f72e64981f27b796fcfd50c3c07fd606 (diff)
downloadsqlalchemy-dd20ca5cb9eb0361f22023437d25a5bbb53f6871.tar.gz
- Removed @unsupported
Diffstat (limited to 'test/orm/query.py')
-rw-r--r--test/orm/query.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/orm/query.py b/test/orm/query.py
index d2550427c..911155692 100644
--- a/test/orm/query.py
+++ b/test/orm/query.py
@@ -16,6 +16,7 @@ from orm import _fixtures
from sqlalchemy.orm.util import join, outerjoin, with_parent
+
class QueryTest(FixtureTest):
keep_mappers = True
keep_data = True
@@ -414,7 +415,7 @@ class FilterTest(QueryTest):
assert [User(id=10)] == sess.query(User).outerjoin("addresses", aliased=True).filter(~User.addresses.any()).all()
- @testing.unsupported('maxdb', 'can dump core')
+ @testing.crashes('maxdb', 'can dump core')
def test_has(self):
sess = create_session()
assert [Address(id=5)] == sess.query(Address).filter(Address.user.has(name='fred')).all()