(get_request)
| 569 | |
| 570 | |
| 571 | async def test_proxy_https_connection_error(get_request) -> None: |
| 572 | url = "https://secure.aiohttp.io/path" |
| 573 | proxy_url = "http://localhost:2242/" |
| 574 | |
| 575 | with pytest.raises(aiohttp.ClientConnectorError): |
| 576 | await get_request(url=url, proxy=proxy_url) |
| 577 | |
| 578 | |
| 579 | async def test_proxy_https_bad_response(proxy_test_server, get_request) -> None: |
nothing calls this directly
no test coverage detected