Class: Minitest::SummaryReporter

Inherits:
StatisticsReporter show all
Defined in:
lib/minitest.rb

Overview

A reporter that prints the header, summary, and failure details at the end of the run.

This is added to the top-level CompositeReporter at the start of the run. If you want to change the output of minitest via a plugin, pull this out of the composite and replace it with your own.

Instance Attribute Summary collapse

Attributes inherited from StatisticsReporter

#assertions, #count, #errors, #failures, #results, #skips, #start_time, #total_time

Attributes inherited from Reporter

#io, #options

Instance Method Summary collapse

Methods inherited from StatisticsReporter

#initialize, #passed?, #record

Methods inherited from Reporter

#initialize

Methods inherited from AbstractReporter

#passed?, #record

Constructor Details

This class inherits a constructor from Minitest::StatisticsReporter

Instance Attribute Details

#old_syncObject

Returns the value of attribute old_sync.



545
546
547
# File 'lib/minitest.rb', line 545

def old_sync
  @old_sync
end

#syncObject

:stopdoc:



544
545
546
# File 'lib/minitest.rb', line 544

def sync
  @sync
end

Instance Method Details

#aggregated_resultsObject Also known as: to_s

:nodoc:



577
578
579
580
581
582
583
584
585
586
587
588
589
# File 'lib/minitest.rb', line 577

def aggregated_results # :nodoc:
  filtered_results = results.dup
  filtered_results.reject!(&:skipped?) unless options[:verbose]

  s = filtered_results.each_with_index.map { |result, i|
    "\n%3d) %s" % [i+1, result]
  }.join("\n") + "\n"

  s.force_encoding(io.external_encoding) if
    ENCS and io.external_encoding and s.encoding != io.external_encoding

  s
end

#reportObject

:nodoc:



560
561
562
563
564
565
566
567
568
569
570
# File 'lib/minitest.rb', line 560

def report # :nodoc:
  super

  io.sync = self.old_sync

  io.puts unless options[:verbose] # finish the dots
  io.puts
  io.puts statistics
  io.puts aggregated_results
  io.puts summary
end

#startObject

:startdoc:



548
549
550
551
552
553
554
555
556
557
558
# File 'lib/minitest.rb', line 548

def start # :nodoc:
  super

  io.puts "Run options: #{options[:args]}"
  io.puts
  io.puts "# Running:"
  io.puts

  self.sync = io.respond_to? :"sync=" # stupid emacs
  self.old_sync, io.sync = io.sync, true if self.sync
end

#statisticsObject

:nodoc:



572
573
574
575
# File 'lib/minitest.rb', line 572

def statistics # :nodoc:
  "Finished in %.6fs, %.4f runs/s, %.4f assertions/s." %
    [total_time, count / total_time, assertions / total_time]
end

#summaryObject

:nodoc:



593
594
595
596
597
598
599
600
601
# File 'lib/minitest.rb', line 593

def summary # :nodoc:
  extra = ""

  extra = "\n\nYou have skipped tests. Run with --verbose for details." if
    results.any?(&:skipped?) unless options[:verbose] or ENV["MT_NO_SKIP_MSG"]

  "%d runs, %d assertions, %d failures, %d errors, %d skips%s" %
    [count, assertions, failures, errors, skips, extra]
end