summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/test/unit/assertions.rb5
2 files changed, 1 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index ee96406d74..38b3b0e029 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,10 +3,7 @@ Fri Jun 10 14:34:24 2011 Koichi Sasada <ko1@atdot.net>
* common.mk: restore TESTRUN_SCRIPT to "$(srcdir)/test.rb".
TESTRUN_SCRIPT is used by "make run", "make gdb" and so on.
-Fri Jun 10 13:04:39 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
-
- * lib/test/unit/assertions.rb (Test::Unit::Assertions#skip): reason to
- skip should be explained.
+Fri Jun 10 13:01:24 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/ruby/test_module.rb (TestModule#remove_rake_mixins): remove all
module related to Rake.
diff --git a/lib/test/unit/assertions.rb b/lib/test/unit/assertions.rb
index 4752943aeb..db0679cafb 100644
--- a/lib/test/unit/assertions.rb
+++ b/lib/test/unit/assertions.rb
@@ -24,11 +24,6 @@ module Test
super
end
- def skip(msg = nil, bt = caller)
- raise ArgumentError, "no reason to skip" unless msg
- super
- end
-
def assert_block(*msgs)
assert yield, *msgs
end