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

24 lines
488 B
Ruby

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