summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-26 10:31:11 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-26 10:31:11 +0000
commit26b86d8a721551216a8f22dd36569e2ef94759a6 (patch)
tree1e37ceb9d246212016a42865a6cab64dd7340cf1 /test
parent51ea2cf4e431d2265a255cb3bfedc91461acf8d4 (diff)
* marshal.c (w_object): dump string encoding in USERDEF.
[ruby-dev:33401] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15253 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_marshal.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb
index e2151e71c5..a7f28c0f8b 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