(self)
| 56 | ws.pong() |
| 57 | |
| 58 | def test_nonstarted_send_str(self): |
| 59 | ws = WebSocketResponse() |
| 60 | with self.assertRaises(RuntimeError): |
| 61 | ws.send_str('string') |
| 62 | |
| 63 | def test_nonstarted_send_bytes(self): |
| 64 | ws = WebSocketResponse() |
nothing calls this directly
no test coverage detected