Sha256: 04e5c5335ef3765e02a66d9320195fbee7d169fe422c1c15da82074d0d207094
Contents?: true
Size: 387 Bytes
Versions: 2
Compression:
Stored size: 387 Bytes
Contents
require "rspec" require "webmock/rspec" require "vcr" require "tinysong" RSpec.configure do |config| config.mock_with :rspec config.extend VCR::RSpec::Macros end VCR.configure do |c| c.cassette_library_dir = "spec/fixtures/vcr_cassettes" c.hook_into :webmock c.default_cassette_options = { record: :new_episodes } c.allow_http_connections_when_no_cassette = false end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tinysong-1.0.0 | spec/spec_helper.rb |
tinysong-0.0.1 | spec/spec_helper.rb |