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