(self)
| 365 | pool.request("GET", "/") |
| 366 | |
| 367 | def test_assert_same_host(self) -> None: |
| 368 | with connection_from_url("http://google.com:80") as c: |
| 369 | with pytest.raises(HostChangedError): |
| 370 | c.request("GET", "http://yahoo.com:80", assert_same_host=True) |
| 371 | |
| 372 | def test_pool_close(self) -> None: |
| 373 | pool = connection_from_url("http://google.com:80") |
nothing calls this directly
no test coverage detected