Added HTML support for Pushover plugin (#437)

This commit is contained in:
Chris Caron
2021-09-06 13:55:40 -04:00
committed by GitHub
parent db69fc44a2
commit 1916a9105d
2 changed files with 9 additions and 0 deletions

View File

@ -3533,6 +3533,10 @@ TEST_URLS = (
('pover://%s@%s?priority=high' % ('u' * 30, 'a' * 30), {
'instance': plugins.NotifyPushover,
}),
# API Key + priority setting + html mode
('pover://%s@%s?priority=high&format=html' % ('u' * 30, 'a' * 30), {
'instance': plugins.NotifyPushover,
}),
# API Key + invalid priority setting
('pover://%s@%s?priority=invalid' % ('u' * 30, 'a' * 30), {
'instance': plugins.NotifyPushover,