Additional tests for email From header (#9564).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7807 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
6cd33a4815
commit
7afb775286
|
@ -157,12 +157,22 @@ class MailerTest < ActiveSupport::TestCase
|
||||||
assert mail.encoded.include?('href')
|
assert mail.encoded.include?('href')
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_mail_from_with_phrase
|
def test_from_header
|
||||||
|
with_settings :mail_from => 'redmine@example.net' do
|
||||||
|
Mailer.deliver_test(User.find(1))
|
||||||
|
end
|
||||||
|
mail = ActionMailer::Base.deliveries.last
|
||||||
|
assert_not_nil mail
|
||||||
|
assert_equal 'redmine@example.net', mail.from_addrs.first.address
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_from_header_with_phrase
|
||||||
with_settings :mail_from => 'Redmine app <redmine@example.net>' do
|
with_settings :mail_from => 'Redmine app <redmine@example.net>' do
|
||||||
Mailer.deliver_test(User.find(1))
|
Mailer.deliver_test(User.find(1))
|
||||||
end
|
end
|
||||||
mail = ActionMailer::Base.deliveries.last
|
mail = ActionMailer::Base.deliveries.last
|
||||||
assert_not_nil mail
|
assert_not_nil mail
|
||||||
|
assert_equal 'redmine@example.net', mail.from_addrs.first.address
|
||||||
assert_equal 'Redmine app', mail.from_addrs.first.name
|
assert_equal 'Redmine app', mail.from_addrs.first.name
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue