Browse Source

Test coverage for Pushover Markdown support added (#618)

pull/623/head
Chris Caron 2 years ago committed by GitHub
parent
commit
49407619c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      test/test_plugin_pushover.py

4
test/test_plugin_pushover.py

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

Loading…
Cancel
Save