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