9 lines
199 B
Ruby
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
|