(self)
| 428 | assert pool.timeout.total is None |
| 429 | |
| 430 | def test_no_host(self) -> None: |
| 431 | with pytest.raises(LocationValueError): |
| 432 | HTTPConnectionPool(None) # type: ignore[arg-type] |
| 433 | |
| 434 | def test_contextmanager(self) -> None: |
| 435 | with connection_from_url("http://google.com:80") as pool: |
nothing calls this directly
no test coverage detected