Better handling of multiple URLs delimited by space/comma

This commit is contained in:
Chris Caron
2019-04-27 23:21:35 -04:00
committed by GitHub
parent 25f5066e27
commit 28b67d42f3
4 changed files with 131 additions and 2 deletions

View File

@ -318,6 +318,9 @@ def test_apprise_tagging(mock_post, mock_get):
# Create our object
a = Apprise()
# An invalid addition can't add the tag
assert(a.add('averyinvalidschema://localhost', tag='uhoh') is False)
# Add entry and assign it to a tag called 'awesome'
assert(a.add('json://localhost/path1/', tag='awesome') is True)