(self)
| 46 | return req |
| 47 | |
| 48 | def test_nonstarted_ping(self): |
| 49 | ws = WebSocketResponse() |
| 50 | with self.assertRaises(RuntimeError): |
| 51 | ws.ping() |
| 52 | |
| 53 | def test_nonstarted_pong(self): |
| 54 | ws = WebSocketResponse() |
nothing calls this directly
no test coverage detected