blob: b4a378a128b58f89b1045cd22cbdb60a04663bdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
require 'vcr'
VCR.configure do |x|
x.cassette_library_dir = 'spec/fixtures/recordings'
x.hook_into :webmock
x.default_cassette_options = {
match_requests_on: %i[method host path]
}
end
|