(self)
| 697 | eq_(canary, ["reset_rollback_ok", "checkin"]) |
| 698 | |
| 699 | def test_reset_event(self): |
| 700 | p, canary = self._reset_event_fixture() |
| 701 | |
| 702 | c1 = p.connect() |
| 703 | eq_(canary, []) |
| 704 | c1.close() |
| 705 | eq_(canary, ["reset"]) |
| 706 | |
| 707 | def test_soft_invalidate_event_no_exception(self): |
| 708 | p, canary = self._soft_invalidate_event_fixture() |
nothing calls this directly
no test coverage detected