method

included

included(base)
public

No documentation available.

# File actionpack/lib/action_controller/test_process.rb, line 370
    def self.included(base)
      # execute the request simulating a specific HTTP method and set/volley the response
      # TODO: this should be un-DRY'ed for the sake of API documentation.
      %w( get post put delete head ).each do |method|
        base.class_eval "def \#{method}(action, parameters = nil, session = nil, flash = nil)\[email protected]['REQUEST_METHOD'] = \"\#{method.upcase}\" if defined?(@request)\nprocess(action, parameters, session, flash)\nend\n", __FILE__, __LINE__
      end
    end