Methods
S
T
Instance Public methods
setup()
# File actionpack/test/abstract/helper_test.rb, line 83
def setup
  @controller = HelperyTestController.new
end
test_clears_up_previous_helpers()
# File actionpack/test/abstract/helper_test.rb, line 87
def test_clears_up_previous_helpers
  @controller.process(:with_symbol)
  assert_equal "I respond to bare_a: false", @controller.response_body
end
test_includes_controller_default_helper()
# File actionpack/test/abstract/helper_test.rb, line 92
def test_includes_controller_default_helper
  @controller.process(:with_block)
  assert_equal "Hello Default", @controller.response_body
end