Sha256: b1e6d5832768625b3242f22e79016f268cbd747fa6d4cb2f577f729e3cf6bd89
Contents?: true
Size: 1.23 KB
Versions: 9
Compression:
Stored size: 1.23 KB
Contents
# create payments based on the totals since they can't be known in YAML (quantities are random) method = Spree::PaymentMethod.where(:name => 'Credit Card', :active => true).first # Hack the current method so we're able to return a gateway without a RAILS_ENV Spree::Gateway.class_eval do def self.current Spree::Gateway::Bogus.new end end # This table was previously called spree_creditcards, and older migrations # reference it as such. Make it explicit here that this table has been renamed. Spree::CreditCard.table_name = 'spree_credit_cards' creditcard = Spree::CreditCard.create({ :cc_type => 'visa', :month => 12, :year => 2014, :last_digits => '1111', :first_name => 'Sean', :last_name => 'Schofield', :gateway_customer_profile_id => 'BGS-1234' }, :without_protection => true) Spree::Order.all.each_with_index do |order, index| printf "\rProcessing order #{index}" STDOUT.flush order.update! payment = order.payments.create({ :amount => order.total, :source => creditcard.clone, :payment_method => method }, :without_protection => true) payment.update_attributes_without_callbacks({ :state => 'pending', :response_code => '12345' }) end puts
Version data entries
9 entries across 9 versions & 2 rubygems