From 2cd7b7b944dc46f6fa2b177ca00f35394a03cb63 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 26 Jan 2008 10:31:11 +0000 Subject: * marshal.c (w_object): dump string encoding in USERDEF. [ruby-dev:33401] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15253 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_marshal.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb index e2151e71c..a7f28c0f8 100644 --- a/test/ruby/test_marshal.rb +++ b/test/ruby/test_marshal.rb @@ -57,6 +57,7 @@ class TestMarshal < Test::Unit::TestCase def initialize(str) @str = str end + attr_reader :str def _dump(limit) @str end @@ -73,4 +74,14 @@ class TestMarshal < Test::Unit::TestCase } assert_equal("marshal data too short", e.message) end + + + def test_userdef_encoding + s1 = "\xa4\xa4".force_encoding("euc-jp") + o1 = C.new(s1) + m = Marshal.dump(o1) + o2 = Marshal.load(m) + s2 = o2.str + assert_equal(s1, s2) + end end -- cgit