aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2012-11-19 12:43:23 -0800
committerJosé Valim <jose.valim@plataformatec.com.br>2012-11-19 12:43:23 -0800
commita1c7eae87bdfd7a10548cc10b6dce4c23983bb1d (patch)
tree96deee30602aff3b8bc4dd90a83475fcfb1deb5b /actionpack/test
parent60790e852a4f349c424a7504d85f9521e13e611e (diff)
parent1d07d3d8105efdede4299a491035a980f7778049 (diff)
downloadrails-a1c7eae87bdfd7a10548cc10b6dce4c23983bb1d.tar.gz
rails-a1c7eae87bdfd7a10548cc10b6dce4c23983bb1d.tar.bz2
rails-a1c7eae87bdfd7a10548cc10b6dce4c23983bb1d.zip
Merge pull request #8212 from senny/8197_make_render_in_spacer_template_work
render every partial with a new `PartialRenderer`.
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/render_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb
index aa33f01d02..859ed1466b 100644
--- a/actionpack/test/controller/render_test.rb
+++ b/actionpack/test/controller/render_test.rb
@@ -646,6 +646,10 @@ class TestController < ActionController::Base
render :partial => "customer", :spacer_template => "partial_only", :collection => [ Customer.new("david"), Customer.new("mary") ]
end
+ def partial_collection_with_spacer_which_uses_render
+ render :partial => "customer", :spacer_template => "partial_with_partial", :collection => [ Customer.new("david"), Customer.new("mary") ]
+ end
+
def partial_collection_shorthand_with_locals
render :partial => [ Customer.new("david"), Customer.new("mary") ], :locals => { :greeting => "Bonjour" }
end
@@ -1445,6 +1449,12 @@ class RenderTest < ActionController::TestCase
assert_template :partial => '_customer'
end
+ def test_partial_collection_with_spacer_which_uses_render
+ get :partial_collection_with_spacer_which_uses_render
+ assert_equal "Hello: davidpartial html\npartial with partial\nHello: mary", @response.body
+ assert_template :partial => '_customer'
+ end
+
def test_partial_collection_shorthand_with_locals
get :partial_collection_shorthand_with_locals
assert_equal "Bonjour: davidBonjour: mary", @response.body