Andrew Tomaka
fd75a7c6ff
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #1
48 lines
1.2 KiB
Ruby
48 lines
1.2 KiB
Ruby
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
|
|
post incomes_url, params: {income: {amount: @income.amount, description: @income.description, included: @income.included, member_id: @income.member_id}}
|
|
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
|
|
patch income_url(@income), params: {income: {amount: @income.amount, description: @income.description, included: @income.included, member_id: @income.member_id}}
|
|
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
|