41 lines
907 B
Ruby
41 lines
907 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class TournamentsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
@tournament = tournaments(:one)
|
|
end
|
|
|
|
test 'should get index' do
|
|
get tournaments_url, as: :json
|
|
assert_response :success
|
|
end
|
|
|
|
test 'should create tournament' do
|
|
assert_difference('Tournament.count') do
|
|
post tournaments_url, params: { tournament: {} }, as: :json
|
|
end
|
|
|
|
assert_response 201
|
|
end
|
|
|
|
test 'should show tournament' do
|
|
get tournament_url(@tournament), as: :json
|
|
assert_response :success
|
|
end
|
|
|
|
test 'should update tournament' do
|
|
patch tournament_url(@tournament), params: { tournament: {} }, as: :json
|
|
assert_response 200
|
|
end
|
|
|
|
test 'should destroy tournament' do
|
|
assert_difference('Tournament.count', -1) do
|
|
delete tournament_url(@tournament), as: :json
|
|
end
|
|
|
|
assert_response 204
|
|
end
|
|
end
|