(self)
| 454 | old_pool_queue.get(block=False) |
| 455 | |
| 456 | def test_url_from_pool(self) -> None: |
| 457 | with connection_from_url("http://google.com:80") as pool: |
| 458 | path = "path?query=foo" |
| 459 | assert f"http://google.com:80/{path}" == _url_from_pool(pool, path) |
| 460 | |
| 461 | def test_ca_certs_default_cert_required(self) -> None: |
| 462 | with connection_from_url("https://google.com:80", ca_certs=DEFAULT_CA) as pool: |
nothing calls this directly
no test coverage detected