summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-29 05:24:52 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-29 05:24:52 +0000
commit4c205de3e6fa7da642820fe069734e6321397423 (patch)
tree87b8d8853830db4aad2454bfe9c42c867f914bac /lib
parente21741e254aa051bb3dca54a54583deb29586c55 (diff)
* lib/test/unit/assertions.rb (Test::Unit::Assertions#assert):
reverted. [ruby-core:29872] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27543 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/test/unit/assertions.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/test/unit/assertions.rb b/lib/test/unit/assertions.rb
index 52d52012df..821faf5803 100644
--- a/lib/test/unit/assertions.rb
+++ b/lib/test/unit/assertions.rb
@@ -10,16 +10,6 @@ module Test
obj.pretty_inspect.chomp
end
- def assert(result, *args, &b)
- super(result == true || result == false, "assertion result must be true or false")
- super
- end
-
- def refute(result, *args, &b)
- super(result == true || result == false, "assertion result must be true or false")
- super
- end
-
def assert_raise(*args, &b)
assert_raises(*args, &b)
end