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

assertions.rb: assert_all_assertions

* test/lib/test/unit/assertions.rb (assert_all_assertions): prefix
  assert to be filtered out.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56546 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-11-02 01:31:00 +00:00
parent d97b8d0d6c
commit af015a9adc

View file

@ -835,12 +835,13 @@ eom
end
end
def all_assertions(msg = nil)
def assert_all_assertions(msg = nil)
all = AllFailures.new
yield all
ensure
assert(all.pass?, message(msg) {all.message.chomp(".")})
end
alias all_assertions assert_all_assertions
def build_message(head, template=nil, *arguments) #:nodoc:
template &&= template.chomp