summaryrefslogtreecommitdiffstats
path: root/test/unit/mail_handler_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-03-04 14:01:54 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-03-04 14:01:54 +0000
commitdf89c24e37af13fac084b44ae5f3f40769d7aa24 (patch)
tree15198adb07ea66838cf6554848194fe173783878 /test/unit/mail_handler_test.rb
parent67d52acb848252d0f51045914f5219311ef01092 (diff)
downloadredmine-df89c24e37af13fac084b44ae5f3f40769d7aa24.tar.gz
redmine-df89c24e37af13fac084b44ae5f3f40769d7aa24.zip
Adds an helper to get the body of an email in tests.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9092 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/mail_handler_test.rb')
-rw-r--r--test/unit/mail_handler_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/mail_handler_test.rb b/test/unit/mail_handler_test.rb
index 218625f74..bf38048db 100644
--- a/test/unit/mail_handler_test.rb
+++ b/test/unit/mail_handler_test.rb
@@ -272,8 +272,8 @@ class MailHandlerTest < ActiveSupport::TestCase
email = ActionMailer::Base.deliveries.first
assert_not_nil email
assert email.subject.include?('account activation')
- login = email.body.match(/\* Login: (.*)$/)[1]
- password = email.body.match(/\* Password: (.*)$/)[1]
+ login = mail_body(email).match(/\* Login: (.*)$/)[1]
+ password = mail_body(email).match(/\* Password: (.*)$/)[1]
assert_equal issue.author, User.try_to_login(login, password)
end
end