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_1_0b1~84^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38958f7b3f3e6009c419ba8e021f2b14c1f2b89a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - add a forwards-test here as well --- diff --git a/test/sql/test_resultset.py b/test/sql/test_resultset.py index ec9f24963d..bd2b8c0aeb 100644 --- a/test/sql/test_resultset.py +++ b/test/sql/test_resultset.py @@ -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):