Sha256: 473d34a49a7e8cf565314d91516c7b9267a96729968187c7fe0896cc642ae745
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
Feature: before_http_request hook The `before_http_request` hook gets called with each request just before it proceeds. It can be used for many things: * globally logging requests * inserting a particular cassette based on the request URI host * raising a timeout error Scenario Outline: log all requests using a before_http_request hook Given a file named "before_http_request.rb" with: """ruby include_http_adapter_for("<http_lib>") start_sinatra_app(:port => 7777) do get('/') { "Hello World" } end require 'vcr' VCR.configure do |c| <configuration> c.cassette_library_dir = 'cassettes' c.ignore_localhost = true c.before_http_request do |request| puts "before request: #{request.method} #{request.uri}" end end make_http_request(:get, "http://localhost:7777/") """ When I run `ruby before_http_request.rb` Then it should pass with "before request: get http://localhost:7777/" Examples: | configuration | http_lib | | c.hook_into :fakeweb | net/http | | c.hook_into :webmock | net/http | | c.hook_into :webmock | httpclient | | c.hook_into :webmock | curb | | c.hook_into :typhoeus | typhoeus | | c.hook_into :excon | excon | | c.hook_into :faraday | faraday (w/ net_http) |
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vcr-2.0.0.rc1 | features/hooks/before_http_request.feature |