tests: extend imapsplit test
One more test of the internal imapsplit function. Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
parent
8fe8bbe366
commit
d079e614ea
@ -59,6 +59,9 @@ class TestInternalFunctions(unittest.TestCase):
|
|||||||
res = imaputil.imapsplit(b'(\\HasNoChildren) "." "INBOX.Sent"')
|
res = imaputil.imapsplit(b'(\\HasNoChildren) "." "INBOX.Sent"')
|
||||||
self.assertEqual(res, [b'(\\HasNoChildren)', b'"."', b'"INBOX.Sent"'])
|
self.assertEqual(res, [b'(\\HasNoChildren)', b'"."', b'"INBOX.Sent"'])
|
||||||
|
|
||||||
|
res = imaputil.imapsplit(b'"mo\\" o" sdfsdf')
|
||||||
|
self.assertEqual(res, [b'"mo\\" o"', b'sdfsdf'])
|
||||||
|
|
||||||
def test_02_flagsplit(self):
|
def test_02_flagsplit(self):
|
||||||
"""Test imaputil.flagsplit()"""
|
"""Test imaputil.flagsplit()"""
|
||||||
res = imaputil.flagsplit(b'(\\Draft \\Deleted)')
|
res = imaputil.flagsplit(b'(\\Draft \\Deleted)')
|
||||||
|
Loading…
Reference in New Issue
Block a user