48 lines
1.2 KiB
Ruby
48 lines
1.2 KiB
Ruby
require "test_helper"
|
|
|
|
class ChecklistsControllerTest < ActionDispatch::IntegrationTest
|
|
setup do
|
|
@checklist = checklists(:one)
|
|
end
|
|
|
|
test "should get index" do
|
|
get checklists_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get new" do
|
|
get new_checklist_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should create checklist" do
|
|
assert_difference("Checklist.count") do
|
|
post checklists_url, params: { checklist: { code: @checklist.code, description: @checklist.description, name: @checklist.name } }
|
|
end
|
|
|
|
assert_redirected_to checklist_url(Checklist.last)
|
|
end
|
|
|
|
test "should show checklist" do
|
|
get checklist_url(@checklist)
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get edit" do
|
|
get edit_checklist_url(@checklist)
|
|
assert_response :success
|
|
end
|
|
|
|
test "should update checklist" do
|
|
patch checklist_url(@checklist), params: { checklist: { code: @checklist.code, description: @checklist.description, name: @checklist.name } }
|
|
assert_redirected_to checklist_url(@checklist)
|
|
end
|
|
|
|
test "should destroy checklist" do
|
|
assert_difference("Checklist.count", -1) do
|
|
delete checklist_url(@checklist)
|
|
end
|
|
|
|
assert_redirected_to checklists_url
|
|
end
|
|
end
|