Sha256: 838a2df7de66553f33d1f14b35bcc80d5c6fe5f747fb439e4e0bea421e4aea25
Contents?: true
Size: 711 Bytes
Versions: 39
Compression:
Stored size: 711 Bytes
Contents
FactoryGirl.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
39 entries across 39 versions & 1 rubygems