(self)
| 433 | self.assertEqual(data, "café") |
| 434 | |
| 435 | def test_recv_binary(self): |
| 436 | self.receive_frame(Frame(True, OP_BINARY, b"tea")) |
| 437 | data = self.loop.run_until_complete(self.protocol.recv()) |
| 438 | self.assertEqual(data, b"tea") |
| 439 | |
| 440 | def test_recv_on_closing_connection_local(self): |
| 441 | close_task = self.half_close_connection_local() |
nothing calls this directly
no test coverage detected