aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_render_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/new_render_test.rb')
-rw-r--r--actionpack/test/controller/new_render_test.rb13
1 files changed, 12 insertions, 1 deletions
diff --git a/actionpack/test/controller/new_render_test.rb b/actionpack/test/controller/new_render_test.rb
index fb23b9e02c..a51bd2a83e 100644
--- a/actionpack/test/controller/new_render_test.rb
+++ b/actionpack/test/controller/new_render_test.rb
@@ -90,6 +90,10 @@ class NewRenderTestController < ActionController::Base
render :inline => "Hello: <%= params[:name] %>"
end
+ def accessing_params_in_template_with_layout
+ render :inline => "Hello: <%= params[:name] %>", :layout => nil
+ end
+
def rescue_action(e) raise end
private
@@ -97,7 +101,9 @@ class NewRenderTestController < ActionController::Base
case action_name
when "layout_test", "rendering_without_layout",
"rendering_nothing_on_layout", "render_text_hello_world",
- "partial_only", "partial_only_with_layout"
+ "partial_only", "partial_only_with_layout",
+ "accessing_params_in_template",
+ "accessing_params_in_template_with_layout"
"layouts/standard"
when "builder_layout_test"
"layouts/builder"
@@ -237,4 +243,9 @@ class NewRenderTest < Test::Unit::TestCase
get :accessing_params_in_template, :name => "David"
assert_equal "Hello: David", @response.body
end
+
+ def test_accessing_params_in_template_with_layout
+ get :accessing_params_in_template_with_layout, :name => "David"
+ assert_equal "<html>Hello: David</html>", @response.body
+ end
end