Methods
S
T
Instance Public methods
setup()
# File actionpack/test/controller/helper_test.rb, line 76
def setup
  @request    = ActionController::TestRequest.new
  @response   = ActionController::TestResponse.new
end
test_helpers_paths_priority()
# File actionpack/test/controller/helper_test.rb, line 81
def test_helpers_paths_priority
  request  = ActionController::TestRequest.new
  responses = HelpersPathsController.action(:index).call(request.env)

  # helpers1_pack was given as a second path, so pack1_helper should be
  # included as the second one
  assert_equal "pack1", responses.last.body
end