Skip to content
Snippets Groups Projects
Commit e67fbdc3 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang
Browse files

Test that account activation email contains the appropriate link (#2825).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2561 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 36a55a09
No related merge requests found
......@@ -207,10 +207,16 @@ class MailerTest < Test::Unit::TestCase
def test_register
token = Token.find(1)
Setting.host_name = 'redmine.foo'
Setting.protocol = 'https'
valid_languages.each do |lang|
token.user.update_attribute :language, lang.to_s
token.reload
ActionMailer::Base.deliveries.clear
assert Mailer.deliver_register(token)
mail = ActionMailer::Base.deliveries.last
assert mail.body.include?("https://redmine.foo/account/activate?token=#{token.value}")
end
end
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment