blob: bd11095cf24146763080d9cc000d22475ac8fddd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'test/unit'
require 'singleton'
class TestSingleton < Test::Unit::TestCase
class C
include Singleton
end
def test_marshal
o1 = C.instance
m = Marshal.dump(o1)
o2 = Marshal.load(m)
assert_same(o1, o2)
end
end
|