(self)
| 860 | assert c.connected |
| 861 | |
| 862 | def test_handle_event(self): |
| 863 | c = client.Client() |
| 864 | c._trigger_event = mock.MagicMock() |
| 865 | c._handle_event('/', None, ['foo', ('bar', 'baz')]) |
| 866 | c._trigger_event.assert_called_once_with('foo', '/', ('bar', 'baz')) |
| 867 | |
| 868 | def test_handle_event_with_id_no_arguments(self): |
| 869 | c = client.Client() |
nothing calls this directly
no test coverage detected