(self)
| 497 | return p, canary |
| 498 | |
| 499 | def _reset_event_fixture(self): |
| 500 | p = self._queuepool_fixture() |
| 501 | canary = [] |
| 502 | |
| 503 | def reset(*arg, **kw): |
| 504 | canary.append("reset") |
| 505 | |
| 506 | event.listen(p, "reset", reset) |
| 507 | |
| 508 | return p, canary |
| 509 | |
| 510 | def _invalidate_event_fixture(self): |
| 511 | p = self._queuepool_fixture() |
no test coverage detected