1
0
зеркало из https://github.com/glebtv/yookassa.git synced 2026-08-28 15:16:18 +03:00
Files
yookassa/spec/spec_helper.rb
Andrey Paderin 5b6fac0dab initial commit
2019-06-02 04:08:03 +03:00

20 строки
325 B
Ruby

begin
require 'pry'
rescue LoadError
nil
end
require 'yandex-checkout'
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