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

ruby-changes:10056

From: yugui <ko1@a...>
Date: Fri, 16 Jan 2009 13:58:20 +0900 (JST)
Subject: [ruby-changes:10056] Ruby:r21598 (ruby_1_9_1): * test/minitest/test_mini_test.rb: the number of assertions must be

yugui	2009-01-16 13:57:45 +0900 (Fri, 16 Jan 2009)

  New Revision: 21598

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

  Log:
    * test/minitest/test_mini_test.rb: the number of assertions must be
      exactly equal to the number of assertion method calls that the end-user
      would write. [ruby-dev:37703]
    * lib/minitest/unit.rb: ditto.
      Patch by David Flanagan <david AT davidflanagan.com>. [ruby-core:21350]

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/lib/minitest/unit.rb
    branches/ruby_1_9_1/test/minitest/test_mini_test.rb

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 21597)
+++ ruby_1_9_1/ChangeLog	(revision 21598)
@@ -1,3 +1,12 @@
+Fri Jan 16 13:28:09 2009  Yuki Sonoda (Yugui)  <yugui@y...>
+
+	* test/minitest/test_mini_test.rb: the number of assertions must be
+	  exactly equal to the number of assertion method calls that the end-user
+	  would write. [ruby-dev:37703]
+
+	* lib/minitest/unit.rb: ditto. 
+	  Patch by David Flanagan <david AT davidflanagan.com>. [ruby-core:21350]
+
 Fri Jan 16 12:24:39 2009  Koichi Sasada  <ko1@a...>
 
 	* thread.c (thread_start_func_2): call ruby_cleanup() if thread is
Index: ruby_1_9_1/lib/minitest/unit.rb
===================================================================
--- ruby_1_9_1/lib/minitest/unit.rb	(revision 21597)
+++ ruby_1_9_1/lib/minitest/unit.rb	(revision 21598)
@@ -76,6 +76,7 @@
     def assert_empty obj, msg = nil
       msg = message(msg) { "Expected #{obj.inspect} to be empty" }
       assert_respond_to obj, :empty?
+      self._assertions -= 1
       assert obj.empty?, msg
     end
 
@@ -97,6 +98,7 @@
     def assert_includes collection, obj, msg = nil
       msg = message(msg) { "Expected #{mu_pp(collection)} to include #{mu_pp(obj)}" }
       assert_respond_to collection, :include?
+      self._assertions -= 1
       assert collection.include?(obj), msg
     end
 
@@ -118,6 +120,7 @@
     def assert_match exp, act, msg = nil
       msg = message(msg) { "Expected #{mu_pp(exp)} to match #{mu_pp(act)}" }
       assert_respond_to act, :"=~"
+      self._assertions -= 1
       exp = /#{Regexp.escape(exp)}/ if String === exp && String === act
       assert exp =~ act, msg
     end
@@ -241,6 +244,7 @@
     def refute_empty obj, msg = nil
       msg = message(msg) { "Expected #{obj.inspect} to not be empty" }
       assert_respond_to obj, :empty?
+      self._assertions -= 1
       refute obj.empty?, msg
     end
 
@@ -262,6 +266,7 @@
     def refute_includes collection, obj, msg = nil
       msg = message(msg) { "Expected #{mu_pp(collection)} to not include #{mu_pp(obj)}" }
       assert_respond_to collection, :include?
+      self._assertions -= 1
       refute collection.include?(obj), msg
     end
 
@@ -282,6 +287,7 @@
     def refute_match exp, act, msg = nil
       msg = message(msg) { "Expected #{mu_pp(exp)} to not match #{mu_pp(act)}" }
       assert_respond_to act, :"=~"
+      self._assertions -= 1
       exp = /#{Regexp.escape(exp)}/ if String === exp && String === act
       refute exp =~ act, msg
     end
Index: ruby_1_9_1/test/minitest/test_mini_test.rb
===================================================================
--- ruby_1_9_1/test/minitest/test_mini_test.rb	(revision 21597)
+++ ruby_1_9_1/test/minitest/test_mini_test.rb	(revision 21598)
@@ -440,13 +440,13 @@
   end
 
   def test_assert_empty
-    @assertion_count = 2
+    @assertion_count = 1
 
     @tc.assert_empty []
   end
 
   def test_assert_empty_triggered
-    @assertion_count = 2
+    @assertion_count = 1
 
     util_assert_triggered "Expected [1] to be empty." do
       @tc.assert_empty [1]
@@ -494,13 +494,13 @@
   end
 
   def test_assert_includes
-    @assertion_count = 2
+    @assertion_count = 1
 
     @tc.assert_includes [true], true
   end
 
   def test_assert_includes_triggered
-    @assertion_count = 3
+    @assertion_count = 2
 
     e = @tc.assert_raises MiniTest::Assertion do
       @tc.assert_includes [true], false
@@ -531,12 +531,12 @@
   end
 
   def test_assert_match
-    @assertion_count = 2
+    @assertion_count = 1
     @tc.assert_match(/\w+/, "blah blah blah")
   end
 
   def test_assert_match_object
-    @assertion_count = 2
+    @assertion_count = 1
 
     pattern = Object.new
     def pattern.=~(other) true end
@@ -545,7 +545,7 @@
   end
 
   def test_assert_match_object_triggered
-    @assertion_count = 2
+    @assertion_count = 1
 
     pattern = Object.new
     def pattern.=~(other) false end
@@ -557,7 +557,7 @@
   end
 
   def test_assert_match_triggered
-    @assertion_count = 2
+    @assertion_count = 1
     util_assert_triggered 'Expected /\d+/ to match "blah blah blah".' do
       @tc.assert_match(/\d+/, "blah blah blah")
     end
@@ -801,13 +801,13 @@
   end
 
   def test_refute_empty
-    @assertion_count = 2
+    @assertion_count = 1
 
     @tc.refute_empty [1]
   end
 
   def test_refute_empty_triggered
-    @assertion_count = 2
+    @assertion_count = 1
 
     util_assert_triggered "Expected [] to not be empty." do
       @tc.refute_empty []
@@ -846,13 +846,13 @@
   end
 
   def test_refute_includes
-    @assertion_count = 2
+    @assertion_count = 1
 
     @tc.refute_includes [true], false
   end
 
   def test_refute_includes_triggered
-    @assertion_count = 3
+    @assertion_count = 2
 
     e = @tc.assert_raises MiniTest::Assertion do
       @tc.refute_includes [true], true
@@ -883,17 +883,17 @@
   end
 
   def test_refute_match
-    @assertion_count = 2
+    @assertion_count = 1
     @tc.refute_match(/\d+/, "blah blah blah")
   end
 
   def test_refute_match_object
-    @assertion_count = 2
+    @assertion_count = 1
     @tc.refute_match Object.new, 5 # default #=~ returns false
   end
 
   def test_assert_object_triggered
-    @assertion_count = 2
+    @assertion_count = 1
 
     pattern = Object.new
     def pattern.=~(other) false end
@@ -905,7 +905,7 @@
   end
 
   def test_refute_match_object_triggered
-    @assertion_count = 2
+    @assertion_count = 1
 
     pattern = Object.new
     def pattern.=~(other) true end
@@ -917,7 +917,7 @@
   end
 
   def test_refute_match_triggered
-    @assertion_count = 2
+    @assertion_count = 1
     util_assert_triggered 'Expected /\w+/ to not match "blah blah blah".' do
       @tc.refute_match(/\w+/, "blah blah blah")
     end

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

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