()
| 196 | |
| 197 | |
| 198 | def test_merge_relative_url(): |
| 199 | client = httpx.Client(base_url="https://www.example.com/") |
| 200 | request = client.build_request("GET", "/testing/123") |
| 201 | assert request.url == "https://www.example.com/testing/123" |
| 202 | |
| 203 | |
| 204 | def test_merge_relative_url_with_path(): |
nothing calls this directly
no test coverage detected