Sha256: 26679b242119784ab5b7687cd365a6d07a70678adef0c3d416fc76a5e43c9e83
Contents?: true
Size: 742 Bytes
Versions: 66
Compression:
Stored size: 742 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
66 entries across 66 versions & 1 rubygems