Some basic URL query parameter manipulation.
()
| 706 | |
| 707 | |
| 708 | def test_url_merge_params_manipulation(): |
| 709 | """ |
| 710 | Some basic URL query parameter manipulation. |
| 711 | """ |
| 712 | url = httpx.URL("https://example.org:123/?a=123") |
| 713 | assert url.copy_merge_params({"b": "456"}) == "https://example.org:123/?a=123&b=456" |
| 714 | |
| 715 | |
| 716 | # Tests for IDNA hostname support. |
nothing calls this directly
no test coverage detected