Sha256: f74bc7d65cce7ed0413a4c1f2693ded18b16a497605de4108f376dbb19322eee
Contents?: true
Size: 421 Bytes
Versions: 62
Compression:
Stored size: 421 Bytes
Contents
require 'test_helper' module Workarea class Payment class Tender class StoreCreditTest < TestCase def test_amount= profile = create_payment_profile(store_credit: 5.to_m) payment = create_payment(profile: profile) tender = payment.build_store_credit tender.amount = 10.to_m assert_equal(5.to_m, tender.amount) end end end end end
Version data entries
62 entries across 62 versions & 1 rubygems