Remove name parameter from auth button helpers

This commit is contained in:
Anton Khorev 2024-07-16 17:12:17 +03:00
parent 4a62dac9c0
commit b0e41cf142
3 changed files with 12 additions and 12 deletions

View file

@ -110,7 +110,7 @@ class UserHelperTest < ActionView::TestCase
end
def test_auth_button
button = auth_button("google", "google")
button = auth_button("google")
img_tag = "<img alt=\"Google logo\" class=\"rounded-1\" src=\"/images/google.svg\" width=\"36\" height=\"36\" />"
assert_equal("<a class=\"auth_button btn btn-light p-2\" title=\"Log in with Google\" rel=\"nofollow\" data-method=\"post\" href=\"/auth/google\">#{img_tag}</a>", button)
end