summaryrefslogtreecommitdiff
path: root/trunk/test/test_singleton.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test/test_singleton.rb')
-rw-r--r--trunk/test/test_singleton.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/trunk/test/test_singleton.rb b/trunk/test/test_singleton.rb
deleted file mode 100644
index bd11095cf2..0000000000
--- a/trunk/test/test_singleton.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-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