Namespace
Methods
S
T
Instance Public methods
setup()
# File rails/actionpack/test/controller/helper_test.rb, line 170
def setup
  @request    = ActionController::TestRequest.new
  @response   = ActionController::TestResponse.new
  @request.action = 'index'
end
test_helper_in_a()
# File rails/actionpack/test/controller/helper_test.rb, line 176
def test_helper_in_a
  assert_raise(NameError) { A.process(@request, @response) }
end
test_helper_in_b()
# File rails/actionpack/test/controller/helper_test.rb, line 180
def test_helper_in_b
  assert_equal 'B', B.process(@request, @response).body
end
test_helper_in_c()
# File rails/actionpack/test/controller/helper_test.rb, line 184
def test_helper_in_c
  assert_equal 'C', C.process(@request, @response).body
end