class Faraday::Adapter::Test::Stub

def matches?(request_path, request_body)

def matches?(request_path, request_body)
  request_path == path && (body.to_s.size.zero? || request_body == body)
end