(self)
| 875 | # Test the pong coroutine. |
| 876 | |
| 877 | def test_pong_default(self): |
| 878 | self.loop.run_until_complete(self.protocol.pong()) |
| 879 | self.assertOneFrameSent(True, OP_PONG, b"") |
| 880 | |
| 881 | def test_pong_text(self): |
| 882 | self.loop.run_until_complete(self.protocol.pong("café")) |
nothing calls this directly
no test coverage detected