(self, connection)
| 262 | r.keys() |
| 263 | |
| 264 | def test_row_keys_removed(self, connection): |
| 265 | r = connection.execute( |
| 266 | text("select * from users where user_id=2") |
| 267 | ).first() |
| 268 | |
| 269 | with expect_raises(AttributeError): |
| 270 | r.keys() |
| 271 | |
| 272 | def test_row_contains_key_no_strings(self, connection): |
| 273 | users = self.tables.users |
nothing calls this directly
no test coverage detected