1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/erb/test_erb.rb (test_html_escape): add assertions for the

cases where the argument is not a String.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2012-08-14 07:28:43 +00:00
parent a2884195e7
commit f42a7c0951
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Tue Aug 14 16:25:46 2012 Shugo Maeda <shugo@ruby-lang.org>
* test/erb/test_erb.rb (test_html_escape): add assertions for the
cases where the argument is not a String.
Tue Aug 14 16:03:31 2012 NAKAMURA Usaku <usa@ruby-lang.org> Tue Aug 14 16:03:31 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/win32.c (check_valid_dir): reject "..." as directory name. * win32/win32.c (check_valid_dir): reject "..." as directory name.

View file

@ -46,6 +46,9 @@ class TestERB < Test::Unit::TestCase
assert_equal("", ERB::Util.html_escape("")) assert_equal("", ERB::Util.html_escape(""))
assert_equal("abc", ERB::Util.html_escape("abc")) assert_equal("abc", ERB::Util.html_escape("abc"))
assert_equal("&lt;&lt;", ERB::Util.html_escape("<<")) assert_equal("&lt;&lt;", ERB::Util.html_escape("<<"))
assert_equal("", ERB::Util.html_escape(nil))
assert_equal("123", ERB::Util.html_escape(123))
end end
end end