(self)
| 689 | eq_(canary, ["checkout", "checkout"]) |
| 690 | |
| 691 | def test_checkin_event(self): |
| 692 | p, canary = self._checkin_event_fixture() |
| 693 | |
| 694 | c1 = p.connect() |
| 695 | eq_(canary, []) |
| 696 | c1.close() |
| 697 | eq_(canary, ["reset_rollback_ok", "checkin"]) |
| 698 | |
| 699 | def test_reset_event(self): |
| 700 | p, canary = self._reset_event_fixture() |
nothing calls this directly
no test coverage detected