Sha256: 5e599308a86f33cc6dd34315c407f538cffe1ea6cb4bde0e15f4b9bbf925cfd6
Contents?: true
Size: 538 Bytes
Versions: 17
Compression:
Stored size: 538 Bytes
Contents
require "vcr" require 'webmock/rspec' VCR.configure do |c| c.cassette_library_dir = 'spec/cassettes' c.hook_into :webmock c.default_cassette_options = { :match_requests_on => [:method, :uri, :query, :body, :headers] } c.configure_rspec_metadata! end RSpec.configure do |c| # so we can use :vcr rather than :vcr => true; # in RSpec 3 this will no longer be necessary. c.treat_symbols_as_metadata_keys_with_true_values = true end RSpec::Expectations.configuration.on_potential_false_positives = :nothing
Version data entries
17 entries across 17 versions & 1 rubygems