Sha256: fd149d66573860a8bcf27ff226b115093ad08fda6c252425d8b43350a9c1336f
Contents?: true
Size: 465 Bytes
Versions: 3
Compression:
Stored size: 465 Bytes
Contents
require 'vcr' require 'webmock' VCR.configure do |c| c.cassette_library_dir = 'spec/vcr_cassettes' c.hook_into :webmock c.default_cassette_options = { match_requests_on: [:uri, :method] } c.debug_logger = File.open('spec/vcr.log', 'w') 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hawkular-client-0.2.0 | spec/vcr/vcr_setup.rb |
hawkular-client-0.1.2 | spec/vcr/vcr_setup.rb |
hawkular-client-0.1.1 | spec/vcr/vcr_setup.rb |