(self, message: WebSocketConnectEvent)
| 117 | async def test_accept_connection(ws_protocol_cls: WSProtocol, http_protocol_cls: HTTPProtocol, unused_tcp_port: int): |
| 118 | class App(WebSocketResponse): |
| 119 | async def websocket_connect(self, message: WebSocketConnectEvent): |
| 120 | await self.send({"type": "websocket.accept"}) |
| 121 | |
| 122 | async def open_connection(url: str): |
| 123 | async with websockets.client.connect(url) as websocket: |