(self)
| 736 | c.eio.sleep.assert_called_once_with(1.23) |
| 737 | |
| 738 | def test_send_packet(self): |
| 739 | c = client.Client() |
| 740 | c.eio.send = mock.MagicMock() |
| 741 | c._send_packet(packet.Packet(packet.EVENT, 'foo')) |
| 742 | c.eio.send.assert_called_once_with('2"foo"') |
| 743 | |
| 744 | def test_send_packet_binary(self): |
| 745 | c = client.Client() |
nothing calls this directly
no test coverage detected