module Typhoeus::Request::Stubbable

def run

Returns:
  • (Response) - The response.

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