From 95ffc73ea80c4b77541ac274ae98309f9c04e581 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 8 Sep 2008 14:08:44 +0000 Subject: * transcode.c (rb_econv_insert_output): "readagain" part should be after replacement. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_econv.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test') diff --git a/test/ruby/test_econv.rb b/test/ruby/test_econv.rb index 514cac568..d796db882 100644 --- a/test/ruby/test_econv.rb +++ b/test/ruby/test_econv.rb @@ -798,4 +798,9 @@ class TestEncodingConverter < Test::Unit::TestCase assert_equal("&\u3046\u2661&\"'".force_encoding("utf-8"), "&\u3046\u2661&\"'".encode("utf-8", xml: :text)) end + + def test_iso2022jp_invalid_replace + assert_equal("?x".force_encoding("iso-2022-jp"), + "\222\xA1x".encode("iso-2022-jp", "stateless-iso-2022-jp", :invalid => :replace)) + end end -- cgit