Sha256: dab8478e7ef3a044a6f34051d884a022234b57b199ee238f7015bba0c2ec2d91
Contents?: true
Size: 729 Bytes
Versions: 3
Compression:
Stored size: 729 Bytes
Contents
require "bundler" Bundler.setup(:default, :development) Bundler.require require "paypal-recurring" require "vcr" require "active_support/all" VCR.configure do |config| config.cassette_library_dir = File.dirname(__FILE__) + "/fixtures" config.hook_into :fakeweb end RSpec.configure do |config| config.extend VCR::RSpec::Macros config.before do PayPal::Recurring.configure do |config| config.sandbox = true config.username = "fnando.vieira+seller_api1.gmail.com" config.password = "PRTZZX6JDACB95SA" config.signature = "AJnjtLN0ozBP-BF2ZJrj5sfbmGAxAnf5tev1-MgK5Z8IASmtj-Fw.5pt" config.seller_id = "F2RM85WS56YX2" config.email = "fnando.vieira+seller.gmail.com" end end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
didil-paypal-recurring-1.1.1 | spec/spec_helper.rb |
paypal-recurring-1.1.0 | spec/spec_helper.rb |
paypal-recurring-1.0.0 | spec/spec_helper.rb |