Class: ActionView::TestCase::TestController

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

Constant Summary

Constants inherited from ActionController::Base

ActionController::Base::MODULES

Class Attribute Summary collapse

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from ActionDispatch::TestProcess

#assigns, #cookies, #fixture_file_upload, #flash, #redirect_to_url, #session

Methods inherited from ActionController::Base

without_modules

Methods included from ActionController::Compatibility

#_handle_method_missing, #_normalize_options, #assign_shortcuts, #initialize_template_class, #method_for_action, #render_to_body

Methods inherited from ActionController::Metal

action, call, #content_type, #content_type=, controller_name, #controller_name, #dispatch, #env, inherited, #location, #location=, middleware, #performed?, #response_body=, #status, #status=, #to_a, #url_for, use

Methods inherited from AbstractController::Base

abstract!, #action_methods, action_methods, #available_action?, clear_action_methods!, controller_path, #controller_path, hidden_actions, internal_methods, method_added, #process

Constructor Details

#initializeTestController

Returns a new instance of TestController.



24
25
26
27
28
29
30
31
32
# File 'lib/action_view/test_case.rb', line 24

def initialize
  super
  self.class.controller_path = ""
  @request = ActionController::TestRequest.new
  @response = ActionController::TestResponse.new

  @request.env.delete('PATH_INFO')
  @params = {}
end

Class Attribute Details

.controller_path=(value) ⇒ Object (writeonly)

Sets the attribute controller_path

Parameters:

  • value

    the value to set the attribute controller_path to.



17
18
19
# File 'lib/action_view/test_case.rb', line 17

def controller_path=(value)
  @controller_path = value
end

Instance Attribute Details

#paramsObject

Returns the value of attribute params.



14
15
16
# File 'lib/action_view/test_case.rb', line 14

def params
  @params
end

#requestObject

Returns the value of attribute request.



14
15
16
# File 'lib/action_view/test_case.rb', line 14

def request
  @request
end

#responseObject

Returns the value of attribute response.



14
15
16
# File 'lib/action_view/test_case.rb', line 14

def response
  @response
end

Instance Method Details

#controller_path=(path) ⇒ Object



20
21
22
# File 'lib/action_view/test_case.rb', line 20

def controller_path=(path)
  self.class.controller_path=(path)
end