Skip to content

Commit

Permalink
fisting codes so it will parse [#4430 state:resolved]
Browse files Browse the repository at this point in the history
Signed-off-by: wycats <wycats@gmail.com>
  • Loading branch information
tenderlove authored and wycats committed Apr 17, 2010
1 parent 9a3a4d6 commit d4d352b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionpack/test/template/erb_util_test.rb
Expand Up @@ -4,12 +4,12 @@ class ErbUtilTest < Test::Unit::TestCase
include ERB::Util

ERB::Util::HTML_ESCAPE.each do |given, expected|
define_method "test_html_escape_#{expected.gsub /\W/, ''}" do
define_method "test_html_escape_#{expected.gsub(/\W/, '')}" do
assert_equal expected, html_escape(given)
end

unless given == '"'
define_method "test_json_escape_#{expected.gsub /\W/, ''}" do
define_method "test_json_escape_#{expected.gsub(/\W/, '')}" do
assert_equal ERB::Util::JSON_ESCAPE[given], json_escape(given)
end
end
Expand Down

0 comments on commit d4d352b

Please sign in to comment.