Method: Minitest::SummaryReporter#summary
- Defined in:
- lib/minitest.rb
#summary ⇒ Object
:nodoc:
917 918 919 920 921 922 923 924 925 926 927 928 |
# File 'lib/minitest.rb', line 917 def summary # :nodoc: extra = "" extra = "\n\nYou have skipped tests. Run with --verbose for details." if results.any?(&:skipped?) unless [:verbose] or [:show_skips] or ENV["MT_NO_SKIP_MSG"] extra.prepend ", %d warnings" % [warnings] if [:Werror] "%d runs, %d assertions, %d failures, %d errors, %d skips%s" % [count, assertions, failures, errors, skips, extra] end |