aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-07 03:44:19 -0700
committerJosé Valim <jose.valim@gmail.com>2011-05-07 03:44:19 -0700
commit0e886fe10e396bf4842c86de56f23d05c5d34eae (patch)
treec3ff698c56b7ad3cf7351da698e340d5e76f0c6c /actionpack/test
parentaaf01cd53718c8aa5b69ac056b997e6dd9893777 (diff)
parent2adeaa9c90b7559387b55e7a24a7eb82671c88cc (diff)
downloadrails-0e886fe10e396bf4842c86de56f23d05c5d34eae.tar.gz
rails-0e886fe10e396bf4842c86de56f23d05c5d34eae.tar.bz2
rails-0e886fe10e396bf4842c86de56f23d05c5d34eae.zip
Merge pull request #280 from jballanc/frozen-string-strip-tags
Stripping tags from a frozen string
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/html-scanner/sanitizer_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/template/html-scanner/sanitizer_test.rb b/actionpack/test/template/html-scanner/sanitizer_test.rb
index fcc3782f04..678cb9eeeb 100644
--- a/actionpack/test/template/html-scanner/sanitizer_test.rb
+++ b/actionpack/test/template/html-scanner/sanitizer_test.rb
@@ -20,6 +20,7 @@ class SanitizerTest < ActionController::TestCase
assert_equal "This has a here.", sanitizer.sanitize("This has a <![CDATA[<section>]]> here.")
assert_equal "This has an unclosed ", sanitizer.sanitize("This has an unclosed <![CDATA[<section>]] here...")
[nil, '', ' '].each { |blank| assert_equal blank, sanitizer.sanitize(blank) }
+ assert_nothing_raised { sanitizer.sanitize("This is a frozen string with no tags".freeze) }
end
def test_strip_links