Class: ActionView::TestCase::TestController
- Inherits:
-
ActionController::Base
- Object
- ActionController::Base
- ActionView::TestCase::TestController
- 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
-
#params ⇒ Object
Returns the value of attribute params.
-
#request ⇒ Object
Returns the value of attribute request.
-
#response ⇒ Object
Returns the value of attribute response.
Attributes inherited from ActionController::Base
Instance Method Summary collapse
-
#initialize ⇒ TestController
constructor
A new instance of TestController.
Methods inherited from ActionController::Base
append_view_path, #append_view_path, call, 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, #send_response, #session_enabled?, #url_for, view_paths, #view_paths, view_paths=, #view_paths=
Constructor Details
#initialize ⇒ TestController
Returns a new instance of TestController.
68 69 70 71 72 73 74 |
# File 'lib/action_view/test_case.rb', line 68 def initialize @request = ActionController::TestRequest.new @response = ActionController::TestResponse.new @params = {} send(:initialize_current_url) end |
Instance Attribute Details
#params ⇒ Object
Returns the value of attribute params.
66 67 68 |
# File 'lib/action_view/test_case.rb', line 66 def params @params end |
#request ⇒ Object
Returns the value of attribute request.
66 67 68 |
# File 'lib/action_view/test_case.rb', line 66 def request @request end |
#response ⇒ Object
Returns the value of attribute response.
66 67 68 |
# File 'lib/action_view/test_case.rb', line 66 def response @response end |