Sha256: 8efe2af712f35ba3dbeb662d956b0e37351d8aebafbd3c513bca9a3877bb7b85
Contents?: true
Size: 710 Bytes
Versions: 8
Compression:
Stored size: 710 Bytes
Contents
FactoryBot.define do factory :check_payment_method, class: Spree::PaymentMethod::Check do name 'Check' end factory :credit_card_payment_method, class: Spree::Gateway::Bogus do name 'Credit Card' end # authorize.net was moved to spree_gateway. # Leaving this factory in place with bogus in case anyone is using it. factory :simple_credit_card_payment_method, class: Spree::Gateway::BogusSimple do name 'Credit Card' end factory :store_credit_payment_method, class: Spree::PaymentMethod::StoreCredit do type "Spree::PaymentMethod::StoreCredit" name "Store Credit" description "Store Credit" active true auto_capture true end end
Version data entries
8 entries across 8 versions & 2 rubygems