summaryrefslogtreecommitdiffstats
path: root/askbot/tests
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-10-31 14:00:24 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-10-31 14:00:24 -0300
commit12082fc6a94c483b1057e6d09300c25cb9602c05 (patch)
tree86894a160bd60e6b8f3d0309cf3e0418e5634547 /askbot/tests
parentacf0d4273e229f8352c0b8dab2f873073ddf147b (diff)
downloadaskbot-12082fc6a94c483b1057e6d09300c25cb9602c05.tar.gz
askbot-12082fc6a94c483b1057e6d09300c25cb9602c05.tar.bz2
askbot-12082fc6a94c483b1057e6d09300c25cb9602c05.zip
started collecting email response quote separators
Diffstat (limited to 'askbot/tests')
-rw-r--r--askbot/tests/email_parsing_tests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/askbot/tests/email_parsing_tests.py b/askbot/tests/email_parsing_tests.py
index 905bff0a..6cc5e576 100644
--- a/askbot/tests/email_parsing_tests.py
+++ b/askbot/tests/email_parsing_tests.py
@@ -23,3 +23,11 @@ class EmailParseTests(utils.AskbotTestCase):
print cleaned_body
print "CLEANED BODY"
self.assertEquals(cleaned_body, self.expected_output)
+
+"""collection of quote separators separated with an empty line
+u'\n\nthis is my reply!\n\nOn Wed, Oct 31, 2012 at 1:45 AM, <kp@kp-dev.askbot.com> wrote:\n\n> **\n> '
+
+u'\n\nthis is my another reply!\n\nOn Wed, Oct 31, 2012 at 1:45 AM, <kp@kp-dev.askbot.com> wrote:\n>\n> '
+
+u'\n\nSending this from my yahoo mail account.\n\n\n\n________________________________\n From: "kp@kp-dev.askbot.com" <kp@kp-dev.askbot.com>\nTo: fadeev@rocketmail.com \nSent: Wednesday, October 31, 2012 2:41 AM\nSubject: "This is my test question"\n \n\n \n \n \n'
+"""