Method: Minitest::Result#to_s
- Defined in:
- lib/minitest.rb
permalink #to_s ⇒ Object
:nodoc:
674 675 676 677 678 679 680 |
# File 'lib/minitest.rb', line 674 def to_s # :nodoc: return location if passed? and not skipped? failures.map { |failure| "#{failure.result_label}:\n#{self.location}:\n#{failure.}\n" }.join "\n" end |