aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/erb_util_test.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2008-04-08 04:52:01 +0000
committerRick Olson <technoweenie@gmail.com>2008-04-08 04:52:01 +0000
commit0ff7a2d89fc95dcb0a32ed92aab7156b0778a7ea (patch)
treeaf15ea4a71c680931264823859e8c71e2f6da1b5 /actionpack/test/template/erb_util_test.rb
parent0bea3f8391e985157f3aecdf50a5d61de7aa7f0c (diff)
downloadrails-0ff7a2d89fc95dcb0a32ed92aab7156b0778a7ea.tar.gz
rails-0ff7a2d89fc95dcb0a32ed92aab7156b0778a7ea.tar.bz2
rails-0ff7a2d89fc95dcb0a32ed92aab7156b0778a7ea.zip
add json_escape ERB util to escape html entities in json strings that are output in HTML pages. [rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9241 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template/erb_util_test.rb')
-rw-r--r--actionpack/test/template/erb_util_test.rb22
1 files changed, 9 insertions, 13 deletions
diff --git a/actionpack/test/template/erb_util_test.rb b/actionpack/test/template/erb_util_test.rb
index fe599115df..c8c986f218 100644
--- a/actionpack/test/template/erb_util_test.rb
+++ b/actionpack/test/template/erb_util_test.rb
@@ -2,21 +2,17 @@ require 'abstract_unit'
class ErbUtilTest < Test::Unit::TestCase
include ERB::Util
-
- def test_amp
- assert_equal '&amp;', html_escape('&')
- end
-
- def test_quot
- assert_equal '&quot;', html_escape('"')
- end
- def test_lt
- assert_equal '&lt;', html_escape('<')
- end
+ ERB::Util::HTML_ESCAPE.each do |given, expected|
+ define_method "test_html_escape_#{expected.gsub /\W/, ''}" do
+ assert_equal expected, html_escape(given)
+ end
- def test_gt
- assert_equal '&gt;', html_escape('>')
+ unless given == '"'
+ define_method "test_json_escape_#{expected.gsub /\W/, ''}" do
+ assert_equal ERB::Util::JSON_ESCAPE[given], json_escape(given)
+ end
+ end
end
def test_rest_in_ascii