Advanced email parsing added; eg: Full Name email@domain.com (#276)

This commit is contained in:
Chris Caron
2020-08-18 14:05:29 -04:00
committed by GitHub
parent fbaf1e4059
commit 6e1b8a0bd6
14 changed files with 718 additions and 165 deletions

View File

@ -108,6 +108,12 @@ def test_apprise():
'3ccdd113474722377935511fc85d3dd4') is True
assert len(a) == 3
# Try adding nothing but delimiters
assert a.add(',, ,, , , , ,') is False
# The number of servers added doesn't change
assert len(a) == 3
# We can pop an object off of our stack by it's indexed value:
obj = a.pop(0)
assert isinstance(obj, NotifyBase) is True