Some basic URL query parameter manipulation.
()
| 690 | |
| 691 | |
| 692 | def test_url_add_param_manipulation(): |
| 693 | class="st">""" |
| 694 | Some basic URL query parameter manipulation. |
| 695 | class="st">""" |
| 696 | url = httpx.URL(class="st">"https://example.org:123/?a=123") |
| 697 | assert url.copy_add_param(class="st">"a", class="st">"456") == class="st">"https://example.org:123/?a=123&a=456" |
| 698 | |
| 699 | |
| 700 | def test_url_remove_param_manipulation(): |
nothing calls this directly
no test coverage detected