()
| 190 | |
| 191 | |
| 192 | def test_merge_absolute_url(): |
| 193 | client = httpx.Client(base_url="https://www.example.com/") |
| 194 | request = client.build_request("GET", "http://www.example.com/") |
| 195 | assert request.url == "http://www.example.com/" |
| 196 | |
| 197 | |
| 198 | def test_merge_relative_url(): |
nothing calls this directly
no test coverage detected