(self)
| 524 | return p, canary |
| 525 | |
| 526 | def _close_event_fixture(self): |
| 527 | p = self._queuepool_fixture() |
| 528 | canary = Mock() |
| 529 | event.listen(p, "close", canary) |
| 530 | |
| 531 | return p, canary |
| 532 | |
| 533 | def _detach_event_fixture(self): |
| 534 | p = self._queuepool_fixture() |
no test coverage detected