init
This commit is contained in:
0
test/controllers/.keep
Normal file
0
test/controllers/.keep
Normal file
8
test/controllers/game_controller_test.rb
Normal file
8
test/controllers/game_controller_test.rb
Normal 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
|
8
test/controllers/leaderboard_controller_test.rb
Normal file
8
test/controllers/leaderboard_controller_test.rb
Normal 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
|
8
test/controllers/player_controller_test.rb
Normal file
8
test/controllers/player_controller_test.rb
Normal 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
|
Reference in New Issue
Block a user