Class: ActionView::TestCase::TestController

Inherits:
ActionController::Base show all
Defined in:
lib/action_view/test_case.rb

Constant Summary

Constants inherited from ActionController::Base

ActionController::Base::DEFAULT_RENDER_STATUS_CODE

Constants included from ActionController::StatusCodes

ActionController::StatusCodes::STATUS_CODES, ActionController::StatusCodes::SYMBOL_TO_STATUS_CODE

Instance Attribute Summary collapse

Attributes inherited from ActionController::Base

#action_name, #assigns

Instance Method Summary collapse

Methods inherited from ActionController::Base

#append_view_path, append_view_path, controller_class_name, #controller_class_name, controller_name, #controller_name, controller_path, #controller_path, filter_parameter_logging, hidden_actions, hide_action, prepend_view_path, #prepend_view_path, #process, process, process_cgi, #process_cgi, process_test, #process_test, #process_with_test, #send_response, #session_enabled?, #url_for, #view_paths, view_paths, #view_paths=, view_paths=

Constructor Details

#initializeTestController

Returns a new instance of TestController.



45
46
47
48
# File 'lib/action_view/test_case.rb', line 45

def initialize
  @request = ActionController::TestRequest.new
  @response = ActionController::TestResponse.new
end

Instance Attribute Details

#requestObject

Returns the value of attribute request.



43
44
45
# File 'lib/action_view/test_case.rb', line 43

def request
  @request
end

#responseObject

Returns the value of attribute response.



43
44
45
# File 'lib/action_view/test_case.rb', line 43

def response
  @response
end