2022-11-20 16:02:41 -05:00
|
|
|
require "test_helper"
|
|
|
|
|
|
|
|
class IncomesControllerTest < ActionDispatch::IntegrationTest
|
|
|
|
setup do
|
|
|
|
@income = incomes(:one)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should get index" do
|
|
|
|
get incomes_url
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should get new" do
|
|
|
|
get new_income_url
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should create income" do
|
|
|
|
assert_difference("Income.count") do
|
2023-03-08 19:25:24 -05:00
|
|
|
post incomes_url, params: {income: {amount: @income.amount, description: @income.description, included: @income.included, member_id: @income.member_id}}
|
2022-11-20 16:02:41 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
assert_redirected_to income_url(Income.last)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should show income" do
|
|
|
|
get income_url(@income)
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should get edit" do
|
|
|
|
get edit_income_url(@income)
|
|
|
|
assert_response :success
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should update income" do
|
2023-03-08 19:25:24 -05:00
|
|
|
patch income_url(@income), params: {income: {amount: @income.amount, description: @income.description, included: @income.included, member_id: @income.member_id}}
|
2022-11-20 16:02:41 -05:00
|
|
|
assert_redirected_to income_url(@income)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "should destroy income" do
|
|
|
|
assert_difference("Income.count", -1) do
|
|
|
|
delete income_url(@income)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_redirected_to incomes_url
|
|
|
|
end
|
|
|
|
end
|