From 9eee576d0f9968b4e0e62078e9456978a841abce Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Sun, 27 Apr 2025 05:54:29 +0300 Subject: [PATCH] Rename integration login test Make way for UserLoginTest in system tests because there are already existing UserSignupTest and UserLogoutTest. --- test/integration/{user_login_test.rb => login_test.rb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename test/integration/{user_login_test.rb => login_test.rb} (99%) diff --git a/test/integration/user_login_test.rb b/test/integration/login_test.rb similarity index 99% rename from test/integration/user_login_test.rb rename to test/integration/login_test.rb index a7301233d..2b7a851ad 100644 --- a/test/integration/user_login_test.rb +++ b/test/integration/login_test.rb @@ -1,6 +1,6 @@ require "test_helper" -class UserLoginTest < ActionDispatch::IntegrationTest +class LoginTest < ActionDispatch::IntegrationTest def setup OmniAuth.config.test_mode = true end -- 2.39.5