We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5163940 commit 33ccba0Copy full SHA for 33ccba0
test/email_reply_parser_test.rb
@@ -165,6 +165,11 @@ def test_parse_out_just_top_for_outlook_with_no_line
165
assert_equal "Outlook with a reply directly above line", EmailReplyParser.parse_reply(body)
166
end
167
168
+ def test_parse_out_just_top_for_outlook_with_no_line_and_team_mention
169
+ body = IO.read EMAIL_FIXTURE_PATH.join("outlook_email_with_team_mention.txt").to_s
170
+ assert_equal "Outlook email reply with a team mention in the email body.", EmailReplyParser.parse_reply(body)
171
+ end
172
+
173
def test_parse_out_sent_from_iPhone
174
body = IO.read EMAIL_FIXTURE_PATH.join("email_iPhone.txt").to_s
175
assert_equal "Here is another email", EmailReplyParser.parse_reply(body)
0 commit comments