(self, connection)
| 250 | filters.fail() |
| 251 | |
| 252 | def test_keys_no_rows(self, connection): |
| 253 | for i in range(2): |
| 254 | r = connection.execute( |
| 255 | text("update users set user_name='new' where user_id=10") |
| 256 | ) |
| 257 | |
| 258 | with expect_raises_message( |
| 259 | exc.ResourceClosedError, |
| 260 | "This result object does not return rows", |
| 261 | ): |
| 262 | r.keys() |
| 263 | |
| 264 | def test_row_keys_removed(self, connection): |
| 265 | r = connection.execute( |
nothing calls this directly
no test coverage detected