(self)
| 508 | return p, canary |
| 509 | |
| 510 | def _invalidate_event_fixture(self): |
| 511 | p = self._queuepool_fixture() |
| 512 | canary = Mock() |
| 513 | event.listen(p, "invalidate", canary) |
| 514 | |
| 515 | return p, canary |
| 516 | |
| 517 | def _soft_invalidate_event_fixture(self): |
| 518 | p = self._queuepool_fixture() |
no test coverage detected