Correct the assertion argument order

This commit is contained in:
Abhay Nikam 2019-08-08 00:06:34 +05:30
parent e39efdb87a
commit 76ed911a91
1 changed files with 7 additions and 3 deletions

View File

@ -20,21 +20,25 @@ module ActionMailbox
mail = inbound_email.mail
assert_equal 2, mail.parts.count
assert_equal mail.text_part.to_s, <<~TEXT.chomp
expected_mail_text_part = <<~TEXT.chomp
Content-Type: text/plain;\r
charset=UTF-8\r
Content-Transfer-Encoding: 7bit\r
\r
Hello, world
TEXT
assert_equal mail.html_part.to_s, <<~HTML.chomp
expected_mail_html_part = <<~HTML.chomp
Content-Type: text/html;\r
charset=UTF-8\r
Content-Transfer-Encoding: 7bit\r
\r
<h1>Hello, world</h1>
HTML
assert_equal 2, mail.parts.count
assert_equal expected_mail_text_part, mail.text_part.to_s
assert_equal expected_mail_html_part, mail.html_part.to_s
end
end
end