X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/48b85a7fee26f11217a6ef5141c1dce9ca239bb1..5bd9a2faef7f317299e92063fa22ce56b81e5beb:/test/mailers/user_mailer_test.rb
diff --git a/test/mailers/user_mailer_test.rb b/test/mailers/user_mailer_test.rb
index 2a4b5a417..537bb9d0d 100644
--- a/test/mailers/user_mailer_test.rb
+++ b/test/mailers/user_mailer_test.rb
@@ -17,4 +17,13 @@ class UserMailerTest < ActionMailer::TestCase
assert_match(/one two three/, email.html_part.body.to_s)
end
+
+ def test_html_encoding
+ user = create(:user, :display_name => "Jack & Jill
")
+ message = create(:message, :sender => user)
+ email = UserMailer.message_notification(message)
+
+ assert_match("Jack & Jill
", email.text_part.body.to_s)
+ assert_match("Jack & Jill <br>", email.html_part.body.to_s)
+ end
end