mirror of
https://github.com/we-promise/sure.git
synced 2026-06-02 01:09:01 +00:00
Fix unable to create Deposit entries in investment portfolio (#1125)
* Fix unable to create Deposit entries in investment portfolio * Add system test for deposit transaction
This commit is contained in:
@@ -150,6 +150,24 @@ class TransactionsTest < ApplicationSystemTestCase
|
||||
assert_selection_count(0)
|
||||
end
|
||||
|
||||
|
||||
test "can create deposit transaction for investment account" do
|
||||
investment_account = accounts(:investment)
|
||||
transfer_date = Date.current
|
||||
visit account_path(investment_account)
|
||||
click_on "New transaction"
|
||||
select "Deposit", from: "Type"
|
||||
fill_in "Date", with: transfer_date
|
||||
fill_in "account_entry[amount]", with: 175.25
|
||||
click_button "Add transaction"
|
||||
within "#account_" + investment_account.id do
|
||||
click_on "Transactions"
|
||||
end
|
||||
within "#entry-group-" + transfer_date.to_s do
|
||||
assert_text "175.25"
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def create_transaction(name, date, amount, category: nil, merchant: nil, tags: [])
|
||||
|
||||
Reference in New Issue
Block a user