X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a7092491b069de43bb8d8c30d3526e7095c5cc98..672c79c79cf81b43ce958c9c7298be0e14fa9acf:/test/helpers/user_roles_helper_test.rb diff --git a/test/helpers/user_roles_helper_test.rb b/test/helpers/user_roles_helper_test.rb index 26c303cfa..287504cb4 100644 --- a/test/helpers/user_roles_helper_test.rb +++ b/test/helpers/user_roles_helper_test.rb @@ -12,7 +12,7 @@ class UserRolesHelperTest < ActionView::TestCase icon = role_icon(create(:moderator_user), "moderator") expected = <<~HTML.delete("\n") - + This user is a moderator HTML @@ -25,9 +25,9 @@ class UserRolesHelperTest < ActionView::TestCase user = create(:user) icon = role_icon(user, "moderator") expected = <<~HTML.delete("\n") - + - + Grant moderator access @@ -37,9 +37,9 @@ class UserRolesHelperTest < ActionView::TestCase moderator_user = create(:moderator_user) icon = role_icon(moderator_user, "moderator") expected = <<~HTML.delete("\n") - + - + Revoke moderator access @@ -51,25 +51,25 @@ class UserRolesHelperTest < ActionView::TestCase self.current_user = create(:user) icons = role_icons(current_user) - assert_dom_equal " ", icons + assert_dom_equal "", icons icons = role_icons(create(:moderator_user)) - expected = " " + <<~HTML.delete("\n") + expected = <<~HTML.delete("\n") - + This user is a moderator HTML assert_dom_equal expected, icons icons = role_icons(create(:super_user)) - expected = " " + <<~HTML.delete("\n") + expected = <<~HTML.delete("\n") - + This user is an administrator - + This user is a moderator HTML @@ -81,16 +81,16 @@ class UserRolesHelperTest < ActionView::TestCase user = create(:user) icons = role_icons(user) - expected = " " + <<~HTML.delete("\n") - + expected = <<~HTML.delete("\n") + - + Grant administrator access - + - + Grant moderator access @@ -99,16 +99,16 @@ class UserRolesHelperTest < ActionView::TestCase moderator_user = create(:moderator_user) icons = role_icons(moderator_user) - expected = " " + <<~HTML.delete("\n") - + expected = <<~HTML.delete("\n") + - + Grant administrator access - + - + Revoke moderator access @@ -117,16 +117,16 @@ class UserRolesHelperTest < ActionView::TestCase super_user = create(:super_user) icons = role_icons(super_user) - expected = " " + <<~HTML.delete("\n") - + expected = <<~HTML.delete("\n") + - + Revoke administrator access - + - + Revoke moderator access