(ws, request)
| 136 | """Server runs process_request and continues the handshake.""" |
| 137 | |
| 138 | def process_request(ws, request): |
| 139 | self.assertIsInstance(request, Request) |
| 140 | ws.process_request_ran = True |
| 141 | |
| 142 | async with serve(*args, process_request=process_request) as server: |
| 143 | async with connect(get_uri(server)) as client: |
nothing calls this directly
no test coverage detected