(self)
| 66 | ws.send_bytes(b'bytes') |
| 67 | |
| 68 | def test_nonstarted_close(self): |
| 69 | ws = WebSocketResponse() |
| 70 | with self.assertRaises(RuntimeError): |
| 71 | self.loop.run_until_complete(ws.close()) |
| 72 | |
| 73 | def test_nonstarted_receive_str(self): |
| 74 |
nothing calls this directly
no test coverage detected