Track incomes
This commit is contained in:
parent
ab00344de0
commit
e098ab48ca
19 changed files with 337 additions and 1 deletions
47
test/system/incomes_test.rb
Normal file
47
test/system/incomes_test.rb
Normal file
|
@ -0,0 +1,47 @@
|
|||
require "application_system_test_case"
|
||||
|
||||
class IncomesTest < ApplicationSystemTestCase
|
||||
setup do
|
||||
@income = incomes(:one)
|
||||
end
|
||||
|
||||
test "visiting the index" do
|
||||
visit incomes_url
|
||||
assert_selector "h1", text: "Incomes"
|
||||
end
|
||||
|
||||
test "should create income" do
|
||||
visit incomes_url
|
||||
click_on "New income"
|
||||
|
||||
fill_in "Amount", with: @income.amount
|
||||
fill_in "Description", with: @income.description
|
||||
check "Included" if @income.included
|
||||
fill_in "Member", with: @income.member_id
|
||||
click_on "Create Income"
|
||||
|
||||
assert_text "Income was successfully created"
|
||||
click_on "Back"
|
||||
end
|
||||
|
||||
test "should update Income" do
|
||||
visit income_url(@income)
|
||||
click_on "Edit this income", match: :first
|
||||
|
||||
fill_in "Amount", with: @income.amount
|
||||
fill_in "Description", with: @income.description
|
||||
check "Included" if @income.included
|
||||
fill_in "Member", with: @income.member_id
|
||||
click_on "Update Income"
|
||||
|
||||
assert_text "Income was successfully updated"
|
||||
click_on "Back"
|
||||
end
|
||||
|
||||
test "should destroy Income" do
|
||||
visit income_url(@income)
|
||||
click_on "Destroy this income", match: :first
|
||||
|
||||
assert_text "Income was successfully destroyed"
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue