Sha256: 87e5ec490d1afafc70153e2ae8880fa06cbdf1dda13c9db811f7dae718f02a45
Contents?: true
Size: 544 Bytes
Versions: 6
Compression:
Stored size: 544 Bytes
Contents
############################################################################## # Stripe Plugin ############################################################################## begin require 'stripe' RSpec.configure do |config| config.after(:suite, :stripe) do Stripe::Plan.all(count: 100).each do |plan| if plan.id.match(/test/i) || plan.name.match(/test/i) plan.delete end end Stripe::Customer.all(count: 100).each(&:delete) end end rescue LoadError end
Version data entries
6 entries across 6 versions & 1 rubygems