(self)
| 1209 | conn.detach() |
| 1210 | |
| 1211 | def test_detach_closed(self): |
| 1212 | with self.engine.connect() as conn: |
| 1213 | pass |
| 1214 | with expect_raises_message( |
| 1215 | exc.ResourceClosedError, "This Connection is closed" |
| 1216 | ): |
| 1217 | conn.detach() |
| 1218 | |
| 1219 | @testing.requires.independent_connections |
| 1220 | def test_multiple_invalidate(self): |
nothing calls this directly
no test coverage detected