summaryrefslogtreecommitdiff
path: root/lib/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-08 03:00:11 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-08 03:00:11 +0000
commitccf184d9e472998365d2bd009557919dd4c00a68 (patch)
treeafde8e46ce78178c2da03d7855ee05d6de8fc7fe /lib/test
parentfd1dc66691aeab8055069f06ff01c8d47553a874 (diff)
* lib/test/unit/assertions.rb: assert_nothing_thrown,
assert_raise, assert_not_equal, assert_no_match, assert_not_nil, assert_not_same are coming back as alias. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19712 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test')
-rw-r--r--lib/test/unit/assertions.rb43
1 files changed, 27 insertions, 16 deletions
diff --git a/lib/test/unit/assertions.rb b/lib/test/unit/assertions.rb
index ee973dc58e..97cc2700b4 100644
--- a/lib/test/unit/assertions.rb
+++ b/lib/test/unit/assertions.rb
@@ -5,7 +5,6 @@
############################################################
require 'mini/test'
-require 'test/unit/deprecate'
module Test; end
module Test::Unit # patch up bastards that that extend improperly.
@@ -32,28 +31,40 @@ module Test::Unit # patch up bastards that that extend improperly.
end
module Test::Unit
- module Assertions # deprecations
- tu_deprecate :assert_nothing_thrown, :assert_nothing_raised # 2009-06-01
- tu_deprecate :assert_raise, :assert_raises # 2010-06-01
- tu_deprecate :assert_not_equal, :refute_equal # 2009-06-01
- tu_deprecate :assert_no_match, :refute_match # 2009-06-01
- tu_deprecate :assert_not_nil, :refute_nil # 2009-06-01
- tu_deprecate :assert_not_same, :refute_same # 2009-06-01
-
- def assert_nothing_raised _ = :ignored, msg = nil # 2009-06-01
- self.class.tu_deprecation_warning :assert_nothing_raised
+ module Assertions
+ def assert_nothing_raised(*exp)
+ msg = (Module === exp.last) ? "" : exp.pop
+ noexc = exp.select {|e| not (Module === e and Exception >= e)}
+ unless noexc.empty?
+ noexc = *noexc if noexc.size == 1
+ raise TypeError, "Should expect a class of exception, #{noexc.inspect}"
+ end
self._assertions += 1
- yield
- rescue => e
- raise Mini::Assertion, exception_details(e, "Exception raised:")
+ begin
+ yield
+ rescue Exception => e
+ exp.include?(e.class) or raise
+ raise(Mini::Assertion, exception_details(e, "#{msg}#{msg.empty? ? '' : ' '}Exception raised:"))
+ end
end
- def build_message(user_message, template_message, *args) # 2009-06-01
- self.class.tu_deprecation_warning :build_message
+ def build_message(user_message, template_message, *args)
user_message ||= ''
user_message += ' ' unless user_message.empty?
msg = template_message.split(/<\?>/).zip(args.map { |o| o.inspect })
user_message + msg.join
end
+
+ alias assert_nothing_thrown assert_nothing_raised
+ alias assert_raise assert_raises
+ alias assert_not_equal refute_equal
+ alias assert_no_match refute_match
+ alias assert_not_nil refute_nil
+ alias assert_not_same refute_same
+
+ private
+ def _wrap_assertion
+ yield
+ end
end
end