(self)
| 143 | ws.send_bytes('string') |
| 144 | |
| 145 | def test_write(self): |
| 146 | ws = WebSocketResponse() |
| 147 | with self.assertRaises(RuntimeError): |
| 148 | ws.write(b'data') |
| 149 | |
| 150 | def test_can_prepare_ok(self): |
| 151 | req = self.make_request('GET', '/', protocols=True) |
nothing calls this directly
no test coverage detected