class Object

Constants

RSPEC_CONFIGURER
RSPEC_NAMESPACE

Public Class Methods

new(args = {}) click to toggle source
Calls superclass method
# File lib/webmock/http_lib_adapters/excon_adapter.rb, line 157
def self.new(args = {})
  args.delete(:__construction_args)
  super(args).tap do |instance|
    instance.data[:__construction_args] = args
  end
end

Public Instance Methods

teardown_with_webmock() click to toggle source
# File lib/webmock/minitest.rb, line 21
def teardown_with_webmock
  teardown_without_webmock
  WebMock.reset!
end