Andrew Tomaka
e1a7f4fbbd
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #9
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
|