Rails3: test: add .to_s for mail's bodies check at functional/messages_controller_test.rb

On Rails3, mail's bodies must be checked calling 'encoded'.
'to_s' is alias of 'encoded' of Mail::Message of Rails3.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9033 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-03-01 08:08:25 +00:00
parent 41217ffea0
commit fd18bcef95
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class MessagesControllerTest < ActionController::TestCase
mail = ActionMailer::Base.deliveries.last
assert_not_nil mail
assert_equal "[#{message.board.project.name} - #{message.board.name} - msg#{message.root.id}] Test created message", mail.subject
assert mail.body.include?('Message body')
assert mail.body.to_s.include?('Message body')
# author
assert mail.bcc.include?('jsmith@somenet.foo')
# project member