mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Ensure that .process return the method return
This commit is contained in:
parent
2bb008a6cf
commit
176b1b1ff6
2 changed files with 13 additions and 9 deletions
|
@ -60,42 +60,42 @@ module AbstractController
|
|||
end
|
||||
|
||||
def test_render_template
|
||||
@controller.process(:template)
|
||||
assert_equal "With Template", @controller.process(:template)
|
||||
assert_equal "With Template", @controller.response_body
|
||||
end
|
||||
|
||||
def test_render_file
|
||||
@controller.process(:file)
|
||||
assert_equal "With File", @controller.process(:file)
|
||||
assert_equal "With File", @controller.response_body
|
||||
end
|
||||
|
||||
def test_render_inline
|
||||
@controller.process(:inline)
|
||||
assert_equal "With Inline", @controller.process(:inline)
|
||||
assert_equal "With Inline", @controller.response_body
|
||||
end
|
||||
|
||||
def test_render_text
|
||||
@controller.process(:text)
|
||||
assert_equal "With Text", @controller.process(:text)
|
||||
assert_equal "With Text", @controller.response_body
|
||||
end
|
||||
|
||||
def test_render_default
|
||||
@controller.process(:default)
|
||||
assert_equal "With Default", @controller.process(:default)
|
||||
assert_equal "With Default", @controller.response_body
|
||||
end
|
||||
|
||||
def test_render_string
|
||||
@controller.process(:string)
|
||||
assert_equal "With String", @controller.process(:string)
|
||||
assert_equal "With String", @controller.response_body
|
||||
end
|
||||
|
||||
def test_render_symbol
|
||||
@controller.process(:symbol)
|
||||
assert_equal "With Symbol", @controller.process(:symbol)
|
||||
assert_equal "With Symbol", @controller.response_body
|
||||
end
|
||||
|
||||
def test_render_string_with_path
|
||||
@controller.process(:string_with_path)
|
||||
assert_equal "With String With Path", @controller.process(:string_with_path)
|
||||
assert_equal "With String With Path", @controller.response_body
|
||||
end
|
||||
end
|
||||
|
|
|
@ -720,6 +720,11 @@ class RenderTest < ActionController::TestCase
|
|||
assert_equal "Elastica", @response.body
|
||||
end
|
||||
|
||||
def test_render_process
|
||||
get :render_action_hello_world_as_string
|
||||
assert_equal ["Hello world!"], @controller.process(:render_action_hello_world_as_string)
|
||||
end
|
||||
|
||||
# :ported:
|
||||
def test_render_from_variable
|
||||
get :render_hello_world_from_variable
|
||||
|
@ -1332,4 +1337,3 @@ class RenderTest < ActionController::TestCase
|
|||
assert_equal "Before (Anthony)\nInside from partial (Anthony)\nAfter\nBefore (David)\nInside from partial (David)\nAfter\nBefore (Ramm)\nInside from partial (Ramm)\nAfter", @response.body
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue