We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ab1f9b commit 7f37be6Copy full SHA for 7f37be6
1 file changed
test/email_reply_parser_test.rb
@@ -134,6 +134,11 @@ def test_deals_with_windows_line_endings
134
assert_match /Steps 0-2/, reply.fragments[1].to_s
135
end
136
137
+ def test_handles_non_ascii_characters
138
+ non_ascii_body = "Here’s a test."
139
+ assert_equal non_ascii_body, EmailReplyParser.parse_reply(non_ascii_body)
140
+ end
141
+
142
def test_does_not_modify_input_string
143
original = "The Quick Brown Fox Jumps Over The Lazy Dog"
144
EmailReplyParser.read original
0 commit comments