From 1cb1be17a98875e2f6b887e8cca281f28714c88f Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 24 Jul 2017 16:59:23 +0000 Subject: Fixed link to user in email notifications (#26506). git-svn-id: http://svn.redmine.org/redmine/trunk@16876 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/mailer_test.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test') diff --git a/test/unit/mailer_test.rb b/test/unit/mailer_test.rb index a755b8a5f..87fcf84e7 100644 --- a/test/unit/mailer_test.rb +++ b/test/unit/mailer_test.rb @@ -193,6 +193,14 @@ class MailerTest < ActiveSupport::TestCase Redmine::Utils.relative_url_root = relative_url_root end + def test_link_to_user_in_email + issue = Issue.generate!(:description => '@jsmith') + assert Mailer.deliver_issue_add(issue) + assert_select_email do + assert_select "a[href=?]", "http://localhost:3000/users/2", :text => 'John Smith' + end + end + def test_email_headers issue = Issue.find(1) Mailer.deliver_issue_add(issue) -- cgit v1.2.3