Moving to github

This commit is contained in:
2026-03-28 19:24:29 -04:00
commit 036fa7ab33
302 changed files with 17838 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
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