From e490d925486bfff70eeb3630e9ab0a4dc1e6ee21 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 6 Sep 2008 06:07:34 +0000 Subject: * transcode.c (sym_html): new variable. (sym_text): ditto. (sym_attr): ditto. (econv_opts): check :html=>:text and :html=>:attr. (Init_transcode): initialize the above variables. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_econv.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_econv.rb b/test/ruby/test_econv.rb index 6966ff4e82..3f82d2742c 100644 --- a/test/ruby/test_econv.rb +++ b/test/ruby/test_econv.rb @@ -768,4 +768,11 @@ class TestEncodingConverter < Test::Unit::TestCase assert_equal("&\e$B$&\e(B&".force_encoding("iso-2022-jp"), ec.convert("&\u3046&")) assert_equal('', ec.finish) end + + def test_html_hasharg + assert_equal("&\e$B$&\e(B♥&\"'".force_encoding("iso-2022-jp"), + "&\u3046\u2665&\"'".encode("iso-2022-jp", html: :text)) + assert_equal("\"&\e$B$&\e(B♡&"'\"".force_encoding("iso-2022-jp"), + "&\u3046\u2661&\"'".encode("iso-2022-jp", html: :attr)) + end end -- cgit v1.2.3