module Typhoeus::Hydra::Stubbable

def add(request)

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