[前][次][番号順一覧][スレッド一覧]

ruby-changes:19573

From: drbrain <ko1@a...>
Date: Wed, 18 May 2011 03:15:27 +0900 (JST)
Subject: [ruby-changes:19573] drbrain:r31614 (trunk): * test/test_singleton.rb: Add tests from lib/singleton.rb. Patch by

drbrain	2011-05-18 03:15:10 +0900 (Wed, 18 May 2011)

  New Revision: 31614

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31614

  Log:
    * test/test_singleton.rb:  Add tests from lib/singleton.rb.  Patch by
      Pete Higgins.  [Ruby 1.9 - Bug #4715]

  Modified files:
    trunk/ChangeLog
    trunk/test/test_singleton.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 31613)
+++ ChangeLog	(revision 31614)
@@ -1,3 +1,8 @@
+Wed May 18 03:14:49 2011  Eric Hodel  <drbrain@s...>
+
+	* test/test_singleton.rb:  Add tests from lib/singleton.rb.  Patch by
+	  Pete Higgins.  [Ruby 1.9 - Bug #4715]
+
 Wed May 18 03:03:07 2011  Eric Hodel  <drbrain@s...>
 
 	* lib/singleton.rb:  Improve documentation.  Patch by Pete Higgins.
Index: test/test_singleton.rb
===================================================================
--- test/test_singleton.rb	(revision 31613)
+++ test/test_singleton.rb	(revision 31614)
@@ -2,14 +2,102 @@
 require 'singleton'
 
 class TestSingleton < Test::Unit::TestCase
-  class C
+  class SingletonTest
     include Singleton
   end
 
   def test_marshal
-    o1 = C.instance
+    o1 = SingletonTest.instance
     m = Marshal.dump(o1)
     o2 = Marshal.load(m)
     assert_same(o1, o2)
   end
+
+  def test_instance_never_changes
+    a = SingletonTest.instance
+    b = SingletonTest.instance
+    assert_same a, b
+  end
+
+  def test_initialize_raises_exception
+    assert_raises NoMethodError do
+      SingletonTest.new
+    end
+  end
+
+  def test_allocate_raises_exception
+    assert_raises NoMethodError do
+      SingletonTest.allocate
+    end
+  end
+
+  def test_clone_raises_exception
+    exception = assert_raises TypeError do
+      SingletonTest.instance.clone
+    end
+
+    expected = "can't clone instance of singleton TestSingleton::SingletonTest"
+
+    assert_equal expected, exception.message
+  end
+
+  def test_dup_raises_exception
+    exception = assert_raises TypeError do
+      SingletonTest.instance.dup
+    end
+
+    expected = "can't dup instance of singleton TestSingleton::SingletonTest"
+
+    assert_equal expected, exception.message
+  end
+
+  def test_include_in_module_raises_exception
+    mod = Module.new
+
+    exception = assert_raises TypeError do
+      mod.class_eval do
+        include Singleton
+      end
+    end
+
+    expected = "Inclusion of the OO-Singleton module in module #{mod}"
+
+    assert_equal expected, exception.message
+  end
+
+  def test_extending_singleton_raises_exception
+    assert_raises NoMethodError do
+      'foo'.extend Singleton
+    end
+  end
+
+  def test_inheritance_works_with_overridden_inherited_method
+    super_super_called = false
+
+    outer = Class.new do
+      define_singleton_method :inherited do |sub|
+        super_super_called = true
+      end
+    end
+
+    inner = Class.new(outer) do
+      include Singleton
+    end
+
+    tester = Class.new(inner)
+
+    assert super_super_called
+
+    a = tester.instance
+    b = tester.instance
+    assert_same a, b
+  end
+
+  def test_class_level_cloning_preserves_singleton_behavior
+    klass = SingletonTest.clone
+
+    a = klass.instance
+    b = klass.instance
+    assert_same a, b
+  end
 end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]