(self)
| 826 | self.assertOneFrameSent(True, OP_PING, ping_data) |
| 827 | |
| 828 | def test_ping_text(self): |
| 829 | self.loop.run_until_complete(self.protocol.ping("café")) |
| 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")) |
nothing calls this directly
no test coverage detected