(self)
| 50 | assert p.proxy.port == 443 |
| 51 | |
| 52 | def test_invalid_scheme(self) -> None: |
| 53 | with pytest.raises(AssertionError): |
| 54 | ProxyManager("invalid://host/p") |
| 55 | with pytest.raises(ValueError): |
| 56 | ProxyManager("invalid://host/p") |
| 57 | |
| 58 | def test_proxy_tunnel(self) -> None: |
| 59 | http_url = parse_url("http://example.com") |
nothing calls this directly
no test coverage detected