diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-06-10 06:45:21 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-06-10 06:45:21 +0000 |
commit | 09c8651387bed889bd3f4763962d8ce73bd348b3 (patch) | |
tree | 8e86646f24b8a5065cc026040ed11c3542126622 /lib | |
parent | 5a363fbb50570063019fd1dfd13490f053cbb29f (diff) | |
download | ruby-09c8651387bed889bd3f4763962d8ce73bd348b3.tar.gz |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/test/unit/assertions.rb | 5 |
1 files changed, 0 insertions, 5 deletions
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 |