mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 23:22:53 +00:00
Moving to github
This commit is contained in:
0
test/controllers/.keep
Normal file
0
test/controllers/.keep
Normal file
18
test/controllers/api_tokens_controller_test.rb
Normal file
18
test/controllers/api_tokens_controller_test.rb
Normal 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
|
||||
43
test/controllers/collections_controller_test.rb
Normal file
43
test/controllers/collections_controller_test.rb
Normal 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
|
||||
8
test/controllers/dashboard_controller_test.rb
Normal file
8
test/controllers/dashboard_controller_test.rb
Normal 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
|
||||
48
test/controllers/games_controller_test.rb
Normal file
48
test/controllers/games_controller_test.rb
Normal 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
|
||||
23
test/controllers/igdb_matches_controller_test.rb
Normal file
23
test/controllers/igdb_matches_controller_test.rb
Normal 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
|
||||
38
test/controllers/items_controller_test.rb
Normal file
38
test/controllers/items_controller_test.rb
Normal 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
|
||||
8
test/controllers/pages_controller_test.rb
Normal file
8
test/controllers/pages_controller_test.rb
Normal 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
|
||||
23
test/controllers/password_resets_controller_test.rb
Normal file
23
test/controllers/password_resets_controller_test.rb
Normal 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
|
||||
8
test/controllers/profiles_controller_test.rb
Normal file
8
test/controllers/profiles_controller_test.rb
Normal 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
|
||||
18
test/controllers/sessions_controller_test.rb
Normal file
18
test/controllers/sessions_controller_test.rb
Normal 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
|
||||
23
test/controllers/users_controller_test.rb
Normal file
23
test/controllers/users_controller_test.rb
Normal 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
|
||||
Reference in New Issue
Block a user