(self)
| 531 | return p, canary |
| 532 | |
| 533 | def _detach_event_fixture(self): |
| 534 | p = self._queuepool_fixture() |
| 535 | canary = Mock() |
| 536 | event.listen(p, "detach", canary) |
| 537 | |
| 538 | return p, canary |
| 539 | |
| 540 | def _close_detached_event_fixture(self): |
| 541 | p = self._queuepool_fixture() |
no test coverage detected