Guest User

Untitled

a guest
Jan 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. require 'webmock/rspec'
  2.  
  3. RSpec.configure do |config|
  4. WebMock.disable_net_connect!
  5. require 'vcr'
  6. VCR.config do |c|
  7. c.cassette_library_dir = 'vcr_cassettes'
  8. c.stub_with :webmock
  9. c.default_cassette_options = { :record => :once }
  10. end
  11. end
Add Comment
Please, Sign In to add comment