mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
add debug code
This commit is contained in:
parent
816e5055c9
commit
e83ec207cd
1 changed files with 9 additions and 0 deletions
|
@ -984,6 +984,15 @@ module MiniTest
|
|||
|
||||
def location e # :nodoc:
|
||||
last_before_assertion = ""
|
||||
|
||||
# debug https://ci.appveyor.com/project/ruby/ruby/builds/26358355/job/27sp43hbqwqetqu0
|
||||
# TODO: remove it
|
||||
if e.backtrace == nil
|
||||
STDERR.puts e.inspect
|
||||
STDERR.puts e.class.ancestors
|
||||
raise e.inspect
|
||||
end
|
||||
|
||||
e.backtrace.reverse_each do |s|
|
||||
break if s =~ /in .(assert|refute|flunk|pass|fail|raise|must|wont)/
|
||||
last_before_assertion = s
|
||||
|
|
Loading…
Add table
Reference in a new issue