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

0
test/controllers/.keep Normal file
View File

View File

@@ -0,0 +1,18 @@
require "test_helper"
class ApiTokensControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get api_tokens_index_url
assert_response :success
end
test "should get create" do
get api_tokens_create_url
assert_response :success
end
test "should get destroy" do
get api_tokens_destroy_url
assert_response :success
end
end

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

View File

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

View File

@@ -0,0 +1,48 @@
require "test_helper"
class GamesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get games_index_url
assert_response :success
end
test "should get show" do
get games_show_url
assert_response :success
end
test "should get new" do
get games_new_url
assert_response :success
end
test "should get create" do
get games_create_url
assert_response :success
end
test "should get edit" do
get games_edit_url
assert_response :success
end
test "should get update" do
get games_update_url
assert_response :success
end
test "should get destroy" do
get games_destroy_url
assert_response :success
end
test "should get import" do
get games_import_url
assert_response :success
end
test "should get bulk_create" do
get games_bulk_create_url
assert_response :success
end
end

View File

@@ -0,0 +1,23 @@
require "test_helper"
class IgdbMatchesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get igdb_matches_index_url
assert_response :success
end
test "should get approve" do
get igdb_matches_approve_url
assert_response :success
end
test "should get reject" do
get igdb_matches_reject_url
assert_response :success
end
test "should get sync_now" do
get igdb_matches_sync_now_url
assert_response :success
end
end

View File

@@ -0,0 +1,38 @@
require "test_helper"
class ItemsControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get items_index_url
assert_response :success
end
test "should get show" do
get items_show_url
assert_response :success
end
test "should get new" do
get items_new_url
assert_response :success
end
test "should get create" do
get items_create_url
assert_response :success
end
test "should get edit" do
get items_edit_url
assert_response :success
end
test "should get update" do
get items_update_url
assert_response :success
end
test "should get destroy" do
get items_destroy_url
assert_response :success
end
end

View File

@@ -0,0 +1,8 @@
require "test_helper"
class PagesControllerTest < ActionDispatch::IntegrationTest
test "should get home" do
get pages_home_url
assert_response :success
end
end

View File

@@ -0,0 +1,23 @@
require "test_helper"
class PasswordResetsControllerTest < ActionDispatch::IntegrationTest
test "should get new" do
get password_resets_new_url
assert_response :success
end
test "should get create" do
get password_resets_create_url
assert_response :success
end
test "should get edit" do
get password_resets_edit_url
assert_response :success
end
test "should get update" do
get password_resets_update_url
assert_response :success
end
end

View File

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

View File

@@ -0,0 +1,18 @@
require "test_helper"
class SessionsControllerTest < ActionDispatch::IntegrationTest
test "should get new" do
get sessions_new_url
assert_response :success
end
test "should get create" do
get sessions_create_url
assert_response :success
end
test "should get destroy" do
get sessions_destroy_url
assert_response :success
end
end

View File

@@ -0,0 +1,23 @@
require "test_helper"
class UsersControllerTest < ActionDispatch::IntegrationTest
test "should get new" do
get users_new_url
assert_response :success
end
test "should get create" do
get users_create_url
assert_response :success
end
test "should get edit" do
get users_edit_url
assert_response :success
end
test "should get update" do
get users_update_url
assert_response :success
end
end