X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/51f331e8cccbd20f06f5de1d7f2b043da327fd0a..6931c4982589f1451ca4e911e7fbb9da4b9d319d:/test/mailers/user_mailer_test.rb diff --git a/test/mailers/user_mailer_test.rb b/test/mailers/user_mailer_test.rb index 7857773ee..6df86c15e 100644 --- a/test/mailers/user_mailer_test.rb +++ b/test/mailers/user_mailer_test.rb @@ -18,6 +18,15 @@ class UserMailerTest < ActionMailer::TestCase assert_match(/one two three/, email.html_part.body.to_s) end + def test_gpx_success_all_traces_link + trace = create(:trace) + email = UserMailer.gpx_success(trace, 100) + body = Rails::Dom::Testing.html_document_fragment.parse(email.html_part.body) + + url = Rails.application.routes.url_helpers.url_for(:controller => "traces", :action => "mine", :host => Settings.server_url, :protocol => Settings.server_protocol) + assert_select body, "a[href='#{url}']" + end + def test_gpx_success_trace_link trace = create(:trace) email = UserMailer.gpx_success(trace, 100)