X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/f2d13c075660efb9582d7fb600bd6798d7a382ca..baf10cd39289cd7e94a819305e46f43e85a136c6:/test/helpers/application_helper_test.rb diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 46c35f950..04517c2b5 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -13,11 +13,11 @@ class ApplicationHelperTest < ActionView::TestCase html = linkify(text) assert_equal false, html.html_safe? - assert_equal "Test #{link} is made into a link", html + assert_dom_equal "Test #{link} is made into a link", html html = linkify(text.html_safe) - assert_equal true, html.html_safe? - assert_equal "Test #{link} is made into a link", html + assert_equal true, html.html_safe? + assert_dom_equal "Test #{link} is made into a link", html end %w(test@example.com mailto:test@example.com).each do |link| @@ -25,22 +25,22 @@ class ApplicationHelperTest < ActionView::TestCase html = linkify(text) assert_equal false, html.html_safe? - assert_equal text, html + assert_dom_equal text, html html = linkify(text.html_safe) - assert_equal true, html.html_safe? - assert_equal text, html + assert_equal true, html.html_safe? + assert_dom_equal text, html end end def test_rss_link_to link = rss_link_to(:controller => :diary_entry, :action => :rss) - assert_equal "", link + assert_dom_equal "", link end def test_atom_link_to link = atom_link_to(:controller => :changeset, :action => :feed) - assert_equal "", link + assert_dom_equal "", link end def test_style_rules @@ -91,26 +91,26 @@ class ApplicationHelperTest < ActionView::TestCase def test_if_logged_in html = if_logged_in { "Test 1" } - assert_equal "