This library is a way to test Stripe code without hitting Stripe's servers. It uses Capybara::Server and Webmock to intercept all of the calls from Stripe's Ruby library and returns JSON that the Stripe library can parse.
Add the fake_stripe
Gem to the :test
group in your Gemfile:
# Gemfile
group :test do
gem 'fake_stripe'
end
Remember to run bundle install
.
Set the STRIPE_JS_HOST
constant in an initializer:
# config/initilialzers/stripe.rb
Stripe.api_key = ENV['STRIPE_API_KEY']
unless defined? STRIPE_JS_HOST
STRIPE_JS_HOST = 'https://js.stripe.com'
end
Include the Stripe JavaScript in your application template:
# app/views/layouts/application.html.erb
<%= javascript_include_tag "#{STRIPE_JS_HOST}/v1/" %>
When the test suite runs fake_stripe
will override the address for
STRIPE_JS_HOST
and serve up a local version of Stripe.js.
Require the library in your spec support:
# spec/support/fake_stripe.rb
require 'fake_stripe'
RSpec.configure do |config|
config.before(:each) do
FakeStripe.stub_stripe
end
end
Please see CONTRIBUTING.md for more details.