blob: 8bf60be2f3fc68eefa7818d17ad7ca1c2d1599a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
require 'test_helper'
class TeamsControllerTest < ActionController::TestCase
setup do
@team = teams(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:teams)
end
test "should get new" do
get :new
assert_response :success
end
test "should create team" do
assert_difference('Team.count') do
post :create, team: { }
end
assert_redirected_to team_path(assigns(:team))
end
test "should show team" do
get :show, id: @team
assert_response :success
end
test "should get edit" do
get :edit, id: @team
assert_response :success
end
test "should update team" do
patch :update, id: @team, team: { }
assert_redirected_to team_path(assigns(:team))
end
test "should destroy team" do
assert_difference('Team.count', -1) do
delete :destroy, id: @team
end
assert_redirected_to teams_path
end
end
|