(self)
| 1919 | eq_(call_counts["rowcount"], 4) |
| 1920 | |
| 1921 | def test_row_is_sequence(self): |
| 1922 | row = Row(object(), [None], {}, ["value"]) |
| 1923 | is_true(isinstance(row, collections_abc.Sequence)) |
| 1924 | |
| 1925 | def test_row_special_names(self): |
| 1926 | metadata = SimpleResultMetaData(["key", "count", "index", "foo"]) |