From: Scott Dugas Date: Thu, 23 Oct 2014 21:55:13 +0000 (-0400) Subject: Added requirement to test for bind limit X-Git-Tag: rel_1_0_0~19^2~3^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=470061bcdc0d1cdd2997354962b9e34cd9a43c33;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Added requirement to test for bind limit --- diff --git a/test/orm/test_query.py b/test/orm/test_query.py index 3f68131382..1c5fca1440 100644 --- a/test/orm/test_query.py +++ b/test/orm/test_query.py @@ -1553,6 +1553,7 @@ class FilterTest(QueryTest, AssertsCompiledSQL): assert [] == sess.query(User).order_by(User.id)[3:3] assert [] == sess.query(User).order_by(User.id)[0:0] + @testing.requires.bound_limit_offset def test_select_with_bindparam_offset_limit(self): """Does a query allow bindparam for the limit?""" User = self.classes.User