diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-10-18 15:58:07 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-10-18 15:58:07 +0000 |
commit | 02358c83b76f9fc56b6cabaee24b244d17d08cff (patch) | |
tree | 88b5b9b207163e5d5ceb48e6e7c672c78dc65d91 /actionpack/test/template | |
parent | a0f74092a8fa1eff96de67b70c711fd8408a4ab5 (diff) | |
download | rails-02358c83b76f9fc56b6cabaee24b244d17d08cff.tar.gz rails-02358c83b76f9fc56b6cabaee24b244d17d08cff.tar.bz2 rails-02358c83b76f9fc56b6cabaee24b244d17d08cff.zip |
Fix double-escaped entities, such as &amp;, &#123;, etc. [Rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5321 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/tag_helper_test.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/test/template/tag_helper_test.rb b/actionpack/test/template/tag_helper_test.rb index b45be96959..8611f4c9bd 100644 --- a/actionpack/test/template/tag_helper_test.rb +++ b/actionpack/test/template/tag_helper_test.rb @@ -38,4 +38,16 @@ class TagHelperTest < Test::Unit::TestCase def test_cdata_section assert_equal "<![CDATA[<hello world>]]>", cdata_section("<hello world>") end + + def test_double_escaping_attributes + ['1&2', '1 < 2', '“test“'].each do |escaped| + assert_equal %(<a href="#{escaped}" />), tag('a', :href => escaped) + end + end + + def test_skip_invalid_escaped_attributes + ['&1;', 'dfa3;', '& #123;'].each do |escaped| + assert_equal %(<a href="#{escaped.gsub /&/, '&'}" />), tag('a', :href => escaped) + end + end end |