diff --git a/test/ruby/test_io_m17n.rb b/test/ruby/test_io_m17n.rb index 8646e6c6a6..eb4fd1c46f 100644 --- a/test/ruby/test_io_m17n.rb +++ b/test/ruby/test_io_m17n.rb @@ -407,5 +407,15 @@ EOT end + def test_marshal + with_pipe("EUC-JP") {|r, w| + data = 56225 + Marshal.dump(data, w) + w.close + result = nil + assert_not_raised("[ruby-dev:33264]") { result = Marshal.load(r) } + assert_equal(data, result) + } + end end