1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Don't break test-all.

Revert "* lib/test/unit/assertions.rb (Test::Unit::Assertions#skip): reason to"

This reverts commit r31982.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-06-10 06:45:21 +00:00
parent 5a363fbb50
commit 09c8651387
2 changed files with 1 additions and 9 deletions

View file

@ -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.

View file

@ -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