1
0
зеркало из https://github.com/glebtv/yookassa.git synced 2026-08-28 15:16:18 +03:00
Files
yookassa/spec/spec_helper.rb
2021-10-28 20:16:56 +03:00

22 строки
349 B
Ruby

# frozen_string_literal: true
begin
require "pry"
rescue LoadError
nil
end
require "yookassa"
require "webmock/rspec"
RSpec.configure do |config|
config.order = :random
config.filter_run focus: true
config.run_all_when_everything_filtered = true
config.around(:each) do |example|
stub_request(:any, //)
example.run
end
end