negative/minus (-) parameter sets GET Parms on xml, json, and form URLs

This commit is contained in:
Chris Caron
2022-10-11 20:25:13 -04:00
parent 41b4ddb942
commit cb7f51d82a
7 changed files with 149 additions and 114 deletions

View File

@ -125,6 +125,11 @@ apprise_url_tests = (
('xmls://user:pass@localhost:8080', {
'instance': plugins.NotifyXML,
}),
# Test our GET params
('xml://localhost:8080/path?-ParamA=Value', {
'instance': plugins.NotifyXML,
}),
# Test our Headers
('xml://localhost:8080/path?+HeaderKey=HeaderValue', {
'instance': plugins.NotifyXML,
}),