(self)
| 617 | # Test the send coroutine. |
| 618 | |
| 619 | def test_send_text(self): |
| 620 | self.loop.run_until_complete(self.protocol.send("café")) |
| 621 | self.assertOneFrameSent(True, OP_TEXT, "café".encode()) |
| 622 | |
| 623 | def test_send_binary(self): |
| 624 | self.loop.run_until_complete(self.protocol.send(b"tea")) |
nothing calls this directly
no test coverage detected