From a44713409c0f5cfc95506ef3f1b06f14234d4501 Mon Sep 17 00:00:00 2001 From: smitcona Date: Wed, 1 Feb 2017 17:40:59 +0000 Subject: [PATCH] Added additional case for testing new functionality of split_emails() --- tests/text_quotations_test.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/text_quotations_test.py b/tests/text_quotations_test.py index ff8722a..8cd2023 100644 --- a/tests/text_quotations_test.py +++ b/tests/text_quotations_test.py @@ -716,7 +716,14 @@ Hello. -- Original Message -- On 24th February 2016 at 09.32am Conal Wrote: Hey! + +> Date: Mon, 2 Apr 2012 17:44:22 +0400 +> Subject: Test +> From: bob@xxx.mailgun.org +> To: xxx@gmail.com; xxx@hotmail.com; xxx@yahoo.com; xxx@aol.com; xxx@comcast.net; xxx@nyc.rr.com +> +> Hi """ - expected_markers = "stttttsttttetestt" + expected_markers = "stttttsttttetesttesmtmmm" markers = quotations.split_emails(msg) eq_(markers, expected_markers)