budget/test/models/credit_card_bill_test.rb
Andrew Tomaka e1a7f4fbbd
All checks were successful
continuous-integration/drone/push Build is passing
Add some model tests (#9)
Reviewed-on: #9
2023-11-22 21:41:03 -05:00

9 lines
199 B
Ruby

require "test_helper"
class CreditCardBillTest < ActiveSupport::TestCase
def test_unpaid
credit_card_bill = credit_card_bills(:one)
assert_equal 870.00, credit_card_bill.unpaid
end
end