Methods
S
T
Instance Public methods
setup()
# File actionpack/test/abstract/render_test.rb, line 57
def setup
  @controller = ControllerRenderer.new
end
test_render_default()
# File actionpack/test/abstract/render_test.rb, line 81
def test_render_default
  @controller.process(:default)
  assert_equal "With Default", @controller.response_body
end
test_render_file()
# File actionpack/test/abstract/render_test.rb, line 66
def test_render_file
  @controller.process(:file)
  assert_equal "With File", @controller.response_body
end
test_render_inline()
# File actionpack/test/abstract/render_test.rb, line 71
def test_render_inline
  @controller.process(:inline)
  assert_equal "With Inline", @controller.response_body
end
test_render_string()
# File actionpack/test/abstract/render_test.rb, line 86
def test_render_string
  @controller.process(:string)
  assert_equal "With String", @controller.response_body
end
test_render_string_with_path()
# File actionpack/test/abstract/render_test.rb, line 96
def test_render_string_with_path
  @controller.process(:string_with_path)
  assert_equal "With String With Path", @controller.response_body
end
test_render_symbol()
# File actionpack/test/abstract/render_test.rb, line 91
def test_render_symbol
  @controller.process(:symbol)
  assert_equal "With Symbol", @controller.response_body
end
test_render_template()
# File actionpack/test/abstract/render_test.rb, line 61
def test_render_template
  @controller.process(:template)
  assert_equal "With Template", @controller.response_body
end
test_render_text()
# File actionpack/test/abstract/render_test.rb, line 76
def test_render_text
  @controller.process(:text)
  assert_equal "With Text", @controller.response_body
end