Sha256: 381a8dcf2b52f61cf23af7e3f5731c8cc6161dc7a42b408c3c3efdf297e159f1
Contents?: true
Size: 446 Bytes
Versions: 28
Compression:
Stored size: 446 Bytes
Contents
FactoryGirl.define do factory :adjustment, class: Spree::Adjustment do association(:adjustable, factory: :order) amount 100.0 label 'Shipping' association(:source, factory: :shipment) eligible true end factory :line_item_adjustment, class: Spree::Adjustment do association(:adjustable, factory: :line_item) amount 10.0 label 'VAT 5%' association(:source, factory: :tax_rate) eligible true end end
Version data entries
28 entries across 28 versions & 1 rubygems