(self)
| 830 | self.assertOneFrameSent(True, OP_PING, "café".encode()) |
| 831 | |
| 832 | def test_ping_binary(self): |
| 833 | self.loop.run_until_complete(self.protocol.ping(b"tea")) |
| 834 | self.assertOneFrameSent(True, OP_PING, b"tea") |
| 835 | |
| 836 | def test_ping_binary_from_bytearray(self): |
| 837 | self.loop.run_until_complete(self.protocol.ping(bytearray(b"tea"))) |
nothing calls this directly
no test coverage detected