class WebMock::HttpLibAdapters::NetHttpAdapter

def start(&block)

def start(&block)
  uri = Addressable::URI.parse(WebMock::NetHTTPUtility.get_uri(self))
  if WebMock.net_http_connect_on_start?(uri)
    super(&block)
  else
    start_without_connect(&block)
  end
end