]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- add a forwards-test here as well
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Jan 2016 20:32:53 +0000 (15:32 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Jan 2016 20:32:53 +0000 (15:32 -0500)
test/sql/test_resultset.py

index ec9f24963d2c3beaf1c9b94037d608ebb3ca2837..bd2b8c0aeb40917b4f5f0c2f603e587eed9ad286 100644 (file)
@@ -381,6 +381,10 @@ class ResultProxyTest(fixtures.TablesTest):
         if testing.against("sqlite < 3.10.0"):
             eq_(r['users.user_id'], 1)
             eq_(r['users.user_name'], "john")
+        else:
+            not_in_('users.user_id', r)
+            not_in_('users.user_name', r)
+
         eq_(list(r.keys()), ["user_id", "user_name"])
 
     def test_column_accessor_labels_w_dots(self):