reapply r46568 "assertions.rb: refine message"

`exception` is an expected exception class, not the raised instance,
so the result message cannot have any backtraces.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-06-27 15:44:20 +00:00
parent b020c00c46
commit 9a4f9f3424

View File

@ -126,7 +126,7 @@ module Test
raise TypeError, "Expected #{expected.inspect} to be a kind of String or Regexp, not #{expected.class}" raise TypeError, "Expected #{expected.inspect} to be a kind of String or Regexp, not #{expected.class}"
end end
ex = assert_raise(exception, *msg) {yield} ex = assert_raise(exception, msg || proc {"Exception(#{exception}) with message matches to #{expected.inspect}"}) {yield}
msg = message(msg, "") {"Expected Exception(#{exception}) was raised, but the message doesn't match"} msg = message(msg, "") {"Expected Exception(#{exception}) was raised, but the message doesn't match"}
if assert == :assert_equal if assert == :assert_equal