(self, url: str | None)
| 79 | |
| 80 | @pytest.mark.parametrize("url", ["http://@", None]) |
| 81 | def test_nohost(self, url: str | None) -> None: |
| 82 | p = PoolManager(5) |
| 83 | with pytest.raises(LocationValueError): |
| 84 | p.connection_from_url(url=url) # type: ignore[arg-type] |
| 85 | |
| 86 | def test_contextmanager(self) -> None: |
| 87 | with PoolManager(1) as p: |
nothing calls this directly
no test coverage detected