From 49407619c54884f056f1d6d123b05aef2803accc Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Fri, 1 Jul 2022 10:43:04 -0400 Subject: [PATCH] Test coverage for Pushover Markdown support added (#618) --- test/test_plugin_pushover.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_plugin_pushover.py b/test/test_plugin_pushover.py index 0f60362d99..fe65cd7285 100644 --- a/test/test_plugin_pushover.py +++ b/test/test_plugin_pushover.py @@ -106,6 +106,10 @@ ('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,