From: Mike Bayer Date: Thu, 21 Jan 2016 20:32:53 +0000 (-0500) Subject: - add a forwards-test here as well X-Git-Tag: rel_1_0_12~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=107f1f47b91c4a5c30b2e0eaeb41833c91f74575;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - add a forwards-test here as well (cherry picked from commit 38958f7b3f3e6009c419ba8e021f2b14c1f2b89a) --- diff --git a/test/sql/test_resultset.py b/test/sql/test_resultset.py index bd68c7fcc4..f3c1694090 100644 --- a/test/sql/test_resultset.py +++ b/test/sql/test_resultset.py @@ -380,6 +380,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):