(self, connection)
| 715 | eq_(r._mapping["user_name"], "jack") |
| 716 | |
| 717 | def test_row_getitem_column(self, connection): |
| 718 | col = literal_column("1").label("foo") |
| 719 | |
| 720 | row = connection.execute(select(col)).first() |
| 721 | |
| 722 | with expect_raises_message(TypeError, "tuple indices must be"): |
| 723 | row[col] |
| 724 | |
| 725 | eq_(row._mapping[col], 1) |
| 726 | |
| 727 | def test_column_accessor_basic_text(self, connection): |
| 728 | users = self.tables.users |
nothing calls this directly
no test coverage detected