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
-
#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, controller_class_name, #controller_class_name, controller_name, #controller_name, controller_path, #controller_path, exempt_from_layout, 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, #session_enabled?, #url_for, #view_paths, view_paths, #view_paths=, view_paths=
Constructor Details
#initialize ⇒ TestController
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
#request ⇒ Object
Returns the value of attribute request.
43 44 45 |
# File 'lib/action_view/test_case.rb', line 43 def request @request end |
#response ⇒ Object
Returns the value of attribute response.
43 44 45 |
# File 'lib/action_view/test_case.rb', line 43 def response @response end |