12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- require 'test_helper'
- class GroupsControllerTest < ActionDispatch::IntegrationTest
- setup do
- @group = groups(:one)
- end
- test "should get index" do
- get groups_url
- assert_response :success
- end
- test "should get new" do
- get new_group_url
- assert_response :success
- end
- test "should create group" do
- assert_difference('Group.count') do
- post groups_url, params: { group: {} }
- end
- assert_redirected_to group_url(Group.last)
- end
- test "should show group" do
- get group_url(@group)
- assert_response :success
- end
- test "should get edit" do
- get edit_group_url(@group)
- assert_response :success
- end
- test "should update group" do
- patch group_url(@group), params: { group: {} }
- assert_redirected_to group_url(@group)
- end
- test "should destroy group" do
- assert_difference('Group.count', -1) do
- delete group_url(@group)
- end
- assert_redirected_to groups_url
- end
- end
|