Files
turbovault-app/test/controllers/collections_controller_test.rb
2026-03-28 19:24:29 -04:00

44 lines
852 B
Ruby

require "test_helper"
class CollectionsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get collections_index_url
assert_response :success
end
test "should get show" do
get collections_show_url
assert_response :success
end
test "should get new" do
get collections_new_url
assert_response :success
end
test "should get create" do
get collections_create_url
assert_response :success
end
test "should get edit" do
get collections_edit_url
assert_response :success
end
test "should get update" do
get collections_update_url
assert_response :success
end
test "should get destroy" do
get collections_destroy_url
assert_response :success
end
test "should get games" do
get collections_games_url
assert_response :success
end
end