]> git.openstreetmap.org Git - rails.git/blobdiff - test/helpers/user_helper_test.rb
Replace "Login" labels with "Log in" when used as a verb
[rails.git] / test / helpers / user_helper_test.rb
index 044f71681f2ec9ef2432bcc98c25dd00ecb3acfc..52d3090d02b392220508d28a6c9aab27dbd9f83e 100644 (file)
@@ -116,7 +116,8 @@ class UserHelperTest < ActionView::TestCase
 
   def test_auth_button
     button = auth_button("google", "google")
-    assert_equal("<a class=\"auth_button\" title=\"Login with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\"><img alt=\"Login with a Google OpenID\" class=\"rounded-3\" src=\"/images/google.svg\" /></a>", button)
+    img_tag = "<img alt=\"Log in with a Google OpenID\" class=\"rounded-3\" src=\"/images/google.svg\" />"
+    assert_equal("<a class=\"auth_button\" title=\"Log in with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\">#{img_tag}</a>", button)
   end
 
   private