summaryrefslogtreecommitdiff
path: root/sample/test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/test.rb')
-rw-r--r--sample/test.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/sample/test.rb b/sample/test.rb
index 6c352fa083..104ff2900d 100644
--- a/sample/test.rb
+++ b/sample/test.rb
@@ -1192,6 +1192,9 @@ $x = [1,2,3,[4,5,"foo"],{1=>"bar"},2.5,fact(30)]
$y = Marshal.dump($x)
test_ok($x == Marshal.load($y))
+StrClone=String.clone;
+test_ok(Marshal.load(Marshal.dump(StrClone.new("abc"))).type == StrClone)
+
test_check "pack"
$format = "c2x5CCxsdils_l_a6";