(self)
| 582 | eq_(canary.mock_calls, [call(connection)]) |
| 583 | |
| 584 | def test_first_connect_event(self): |
| 585 | p, canary = self._first_connect_event_fixture() |
| 586 | |
| 587 | p.connect() |
| 588 | eq_(canary, ["first_connect"]) |
| 589 | |
| 590 | def test_first_connect_event_fires_once(self): |
| 591 | p, canary = self._first_connect_event_fixture() |
nothing calls this directly
no test coverage detected