(self)
| 2006 | eq_(list(row._mapping), ["a", "b", "count"]) |
| 2007 | |
| 2008 | def test_row_is_hashable(self): |
| 2009 | row = Row(object(), [None, None, None], {}, (1, "value", "foo")) |
| 2010 | eq_(hash(row), hash((1, "value", "foo"))) |
| 2011 | |
| 2012 | @testing.provide_metadata |
| 2013 | def test_row_getitem_indexes_compiled(self, connection): |