(get_request)
| 359 | |
| 360 | |
| 361 | async def test_proxy_http_connection_error(get_request) -> None: |
| 362 | url = "http://aiohttp.io/path" |
| 363 | proxy_url = "http://localhost:2242/" |
| 364 | |
| 365 | with pytest.raises(aiohttp.ClientConnectorError): |
| 366 | await get_request(url=url, proxy=proxy_url) |
| 367 | |
| 368 | |
| 369 | async def test_proxy_http_bad_response(proxy_test_server, get_request) -> None: |
nothing calls this directly
no test coverage detected