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

assertions.rb: refine all_assertions

* test/lib/test/unit/assertions.rb (all_assertions): refine
  total failiure message.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-10-07 02:19:59 +00:00
parent 9c56ac3fdc
commit 2b450de096

View file

@ -454,14 +454,24 @@ EOT
rescue Exception => e
@failures[key] = e
end
def message
i = 0
@failures.map {|k, v|
"\n#{i+=1}. Assertion for #{k.inspect}\n#{v.message.gsub(/^/, ' | ')}"
}.join("\n")
end
def pass?
@failures.empty?
end
end
def all_assertions(msg = nil)
all = AllFailures.new
yield all
ensure
failures = all.failures
assert(failures.empty?, message(msg) {mu_pp(failures)})
assert(all.pass?, message(msg) {all.message})
end
def build_message(head, template=nil, *arguments) #:nodoc: