mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
new file.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17855 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1aa2d2976f
commit
55b95b0169
1 changed files with 15 additions and 0 deletions
15
test/test_singleton.rb
Normal file
15
test/test_singleton.rb
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Reference in a new issue