This commit is contained in:
2025-01-24 10:22:13 -08:00
commit fc0a446b01
107 changed files with 3251 additions and 0 deletions

0
test/controllers/.keep Normal file
View File

View File

@ -0,0 +1,8 @@
require "test_helper"
class GameControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get game_index_url
assert_response :success
end
end

View File

@ -0,0 +1,8 @@
require "test_helper"
class LeaderboardControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get leaderboard_index_url
assert_response :success
end
end

View File

@ -0,0 +1,8 @@
require "test_helper"
class PlayerControllerTest < ActionDispatch::IntegrationTest
test "should get show" do
get player_show_url
assert_response :success
end
end