module ElasticAPM::Spies

def self.without_faraday

def self.without_faraday
  return yield unless defined?(FaradaySpy)
  # rubocop:disable Style/ExplicitBlockArgument
  ElasticAPM::Spies::FaradaySpy.disable_in do
    yield
  end
  # rubocop:enable Style/ExplicitBlockArgument
end