module Typhoeus::Hydra::Stubbable

def add(request)

Other tags:
    Example: Add the request. -
def add(request)
  if response = Expectation.response_for(request)
    request.finish(response)
  else
    super
  end
end