(self, connection)
| 210 | r.keys() |
| 211 | |
| 212 | def test_row_keys_removed(self, connection): |
| 213 | r = connection.execute( |
| 214 | text("select * from users where user_id=2") |
| 215 | ).first() |
| 216 | |
| 217 | with expect_raises(AttributeError): |
| 218 | r.keys() |
| 219 | |
| 220 | def test_row_contains_key_no_strings(self, connection): |
| 221 | users = self.tables.users |
nothing calls this directly
no test coverage detected