()
| 202 | |
| 203 | |
| 204 | def test_merge_relative_url_with_path(): |
| 205 | client = httpx.Client(base_url="https://www.example.com/some/path") |
| 206 | request = client.build_request("GET", "/testing/123") |
| 207 | assert request.url == "https://www.example.com/some/path/testing/123" |
| 208 | |
| 209 | |
| 210 | def test_merge_relative_url_with_dotted_path(): |
nothing calls this directly
no test coverage detected