(self)
| 51 | ws.ping() |
| 52 | |
| 53 | def test_nonstarted_pong(self): |
| 54 | ws = WebSocketResponse() |
| 55 | with self.assertRaises(RuntimeError): |
| 56 | ws.pong() |
| 57 | |
| 58 | def test_nonstarted_send_str(self): |
| 59 | ws = WebSocketResponse() |
nothing calls this directly
no test coverage detected