Initialize tests and make them pass
All checks were successful
CI / scan_ruby (push) Successful in 14s
CI / scan_js (push) Successful in 11s
CI / lint (push) Successful in 12s
CI / test (push) Successful in 25s

This commit is contained in:
sto
2025-03-23 13:40:27 +01:00
parent f8bfb020bc
commit c98caeea92
8 changed files with 53 additions and 63 deletions

View File

@@ -1,8 +1,4 @@
require "test_helper"
class ContestsControllerTest < ActionDispatch::IntegrationTest
test "should get create" do
get contests_create_url
assert_response :success
end
end

View File

@@ -1,28 +1,4 @@
require "test_helper"
class UsersControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get users_index_url
assert_response :success
end
test "should get edit" do
get users_edit_url
assert_response :success
end
test "should get show" do
get users_show_url
assert_response :success
end
test "should get new" do
get users_new_url
assert_response :success
end
test "should get destroy" do
get users_destroy_url
assert_response :success
end
end