Cassette Library Dir
cassette_library_dir
$server = start_sinatra_app do
get('/') { "Hello" }
end
require 'vcr'
VCR.configure do |c|
c.cassette_library_dir = 'vcr/cassettes'
c.hook_into :webmock
end
VCR.use_cassette('localhost') do
Net::HTTP.get_response('localhost', '/', $server.port)
endLast updated