aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures
diff options
context:
space:
mode:
authorlest <just.lest@gmail.com>2011-11-30 17:38:09 +0300
committerlest <just.lest@gmail.com>2011-11-30 17:38:09 +0300
commite975fe710a1a78d723cfd91c07014627f92e3250 (patch)
treec767e3fd855ceaa12a1ef54d9b20f2e499c10a78 /actionpack/test/fixtures
parent271308cb9617b86cd4de20b629be504b48aea537 (diff)
downloadrails-e975fe710a1a78d723cfd91c07014627f92e3250.tar.gz
rails-e975fe710a1a78d723cfd91c07014627f92e3250.tar.bz2
rails-e975fe710a1a78d723cfd91c07014627f92e3250.zip
test helpers in erb using erb
Diffstat (limited to 'actionpack/test/fixtures')
-rw-r--r--actionpack/test/fixtures/test/_content_tag_nested_in_content_tag.erb3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/test/fixtures/test/_content_tag_nested_in_content_tag.erb b/actionpack/test/fixtures/test/_content_tag_nested_in_content_tag.erb
new file mode 100644
index 0000000000..2f21a75dd9
--- /dev/null
+++ b/actionpack/test/fixtures/test/_content_tag_nested_in_content_tag.erb
@@ -0,0 +1,3 @@
+<%= content_tag 'p' do %>
+ <%= content_tag 'b', 'Hello' %>
+<% end %>