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