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