You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

spec_helper.rb 257B

123456789101112
  1. require 'vcr'
  2. require "webmock/rspec"
  3. ENV["DB_DATABASE"] = ENV["DB_DATABASE"] + '_test'
  4. WebMock.disable_net_connect!(allow_localhost: true)
  5. VCR.configure do |c|
  6. c.cassette_library_dir = "spec/vcr"
  7. c.hook_into :webmock
  8. c.ignore_localhost = true
  9. end