1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00

loan: Set the first valuation as the original principal. (#2088)

Fix: #1645.
This commit is contained in:
Joseph Ho 2025-04-14 09:09:25 -04:00 committed by GitHub
parent 5cb2183bdf
commit f181ba941f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 59 additions and 13 deletions

View file

@ -22,7 +22,8 @@ class LoansControllerTest < ActionDispatch::IntegrationTest
accountable_attributes: {
interest_rate: 5.5,
term_months: 60,
rate_type: "fixed"
rate_type: "fixed",
initial_balance: 50000
}
}
}
@ -36,6 +37,7 @@ class LoansControllerTest < ActionDispatch::IntegrationTest
assert_equal 5.5, created_account.accountable.interest_rate
assert_equal 60, created_account.accountable.term_months
assert_equal "fixed", created_account.accountable.rate_type
assert_equal 50000, created_account.accountable.initial_balance
assert_redirected_to created_account
assert_equal "Loan account created", flash[:notice]
@ -54,7 +56,8 @@ class LoansControllerTest < ActionDispatch::IntegrationTest
id: @account.accountable_id,
interest_rate: 4.5,
term_months: 48,
rate_type: "fixed"
rate_type: "fixed",
initial_balance: 48000
}
}
}
@ -67,6 +70,7 @@ class LoansControllerTest < ActionDispatch::IntegrationTest
assert_equal 4.5, @account.accountable.interest_rate
assert_equal 48, @account.accountable.term_months
assert_equal "fixed", @account.accountable.rate_type
assert_equal 48000, @account.accountable.initial_balance
assert_redirected_to @account
assert_equal "Loan account updated", flash[:notice]