springernature/macmillan-utils

View on GitHub
lib/macmillan/utils/rspec/webmock_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'webmock/rspec'

WebMock.disable_net_connect!(allow_localhost: true, allow: [/codeclimate/])

RSpec.configure do |config|
  config.after(:each) do
    WebMock.reset!
  end

  config.after(:suite) do
    WebMock.disable!
  end
end