aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJosé Valim & Carlos Antonio da Silva <carlos+jose@plataformatec.com.br>2010-08-11 10:23:07 -0300
committerJosé Valim <jose.valim@gmail.com>2010-08-11 10:23:07 -0300
commitf08b58dd0c0ad860bb119bde94a46c6330ca1556 (patch)
tree00568b167c44ca324514b0ddb67ef0ab1514b045 /actionpack/test
parentf5c5cdd4ae87b43c110fb341e6c7c27116dca606 (diff)
downloadrails-f08b58dd0c0ad860bb119bde94a46c6330ca1556.tar.gz
rails-f08b58dd0c0ad860bb119bde94a46c6330ca1556.tar.bz2
rails-f08b58dd0c0ad860bb119bde94a46c6330ca1556.zip
layout_for works again with objects as specified in the documentation and Rails 2.3 [#5357 state:resolved]
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/fixtures/layouts/_customers.erb1
-rw-r--r--actionpack/test/fixtures/test/layout_render_object.erb1
-rw-r--r--actionpack/test/template/render_test.rb5
3 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/layouts/_customers.erb b/actionpack/test/fixtures/layouts/_customers.erb
new file mode 100644
index 0000000000..ae63f13cd3
--- /dev/null
+++ b/actionpack/test/fixtures/layouts/_customers.erb
@@ -0,0 +1 @@
+<title><%= yield Struct.new(:name).new("David") %></title> \ No newline at end of file
diff --git a/actionpack/test/fixtures/test/layout_render_object.erb b/actionpack/test/fixtures/test/layout_render_object.erb
new file mode 100644
index 0000000000..acc4453c08
--- /dev/null
+++ b/actionpack/test/fixtures/test/layout_render_object.erb
@@ -0,0 +1 @@
+<%= render :layout => "layouts/customers" do |customer| %><%= customer.name %><% end %> \ No newline at end of file
diff --git a/actionpack/test/template/render_test.rb b/actionpack/test/template/render_test.rb
index 059dcedad8..60d4d9f4a7 100644
--- a/actionpack/test/template/render_test.rb
+++ b/actionpack/test/template/render_test.rb
@@ -252,6 +252,11 @@ module RenderTestCases
assert_equal %(\n<title>title</title>\n\n),
@view.render(:file => "test/layout_render_file.erb")
end
+
+ def test_render_layout_with_object
+ assert_equal %(<title>David</title>),
+ @view.render(:file => "test/layout_render_object.erb")
+ end
end
class CachedViewRenderTest < ActiveSupport::TestCase