diff options
author | lest <just.lest@gmail.com> | 2011-11-30 17:38:09 +0300 |
---|---|---|
committer | lest <just.lest@gmail.com> | 2011-11-30 17:38:09 +0300 |
commit | e975fe710a1a78d723cfd91c07014627f92e3250 (patch) | |
tree | c767e3fd855ceaa12a1ef54d9b20f2e499c10a78 /actionpack/test/fixtures | |
parent | 271308cb9617b86cd4de20b629be504b48aea537 (diff) | |
download | rails-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.erb | 3 |
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 %> |