Files
sure/test/models/loan_test.rb

27 lines
692 B
Ruby

require "test_helper"
class LoanTest < ActiveSupport::TestCase
test "rejects invalid subtype" do
loan = Loan.new(subtype: "invalid")
assert_not loan.valid?
assert_includes loan.errors[:subtype], "is not included in the list"
end
test "calculates correct monthly payment for fixed rate loan" do
loan_account = Account.create! \
family: families(:dylan_family),
name: "Mortgage Loan",
balance: 500000,
currency: "USD",
accountable: Loan.create!(
subtype: "mortgage",
interest_rate: 3.5,
term_months: 360,
rate_type: "fixed"
)
assert_equal 2245, loan_account.loan.monthly_payment.amount
end
end