aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/fixtures/actionpack/layouts/block_with_layout.erb
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/test/fixtures/actionpack/layouts/block_with_layout.erb')
-rw-r--r--actionview/test/fixtures/actionpack/layouts/block_with_layout.erb3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionview/test/fixtures/actionpack/layouts/block_with_layout.erb b/actionview/test/fixtures/actionpack/layouts/block_with_layout.erb
new file mode 100644
index 0000000000..73ac833e52
--- /dev/null
+++ b/actionview/test/fixtures/actionpack/layouts/block_with_layout.erb
@@ -0,0 +1,3 @@
+<%= render(:layout => "layout_for_partial", :locals => { :name => "Anthony" }) do %>Inside from first block in layout<% "Return value should be discarded" %><% end %>
+<%= yield %>
+<%= render(:layout => "layout_for_partial", :locals => { :name => "Ramm" }) do %>Inside from second block in layout<% end %>