16 lines
288 B
Ruby
16 lines
288 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class TeamControllerTest < ActionDispatch::IntegrationTest
|
|
test 'should get show' do
|
|
get team_show_url
|
|
assert_response :success
|
|
end
|
|
|
|
test 'should get list' do
|
|
get team_list_url
|
|
assert_response :success
|
|
end
|
|
end
|