Add supplementary url support for pushover (#468)

This commit is contained in:
Spencer Phillip Young
2021-10-24 19:20:05 -07:00
committed by GitHub
parent e2ebdbdcf8
commit e8add7b95a
2 changed files with 26 additions and 1 deletions

View File

@ -3581,6 +3581,10 @@ TEST_URLS = (
('pover://%s@%s?sound=spacealarm' % ('u' * 30, 'a' * 30), {
'instance': plugins.NotifyPushover,
}),
# API Key + valid url_title with url
('pover://%s@%s?url=my-url&url_title=title' % ('u' * 30, 'a' * 30), {
'instance': plugins.NotifyPushover,
}),
# API Key + Valid User
('pover://%s@%s' % ('u' * 30, 'a' * 30), {
'instance': plugins.NotifyPushover,