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

#initialize, #passed?, #prerecord, #record, #synchronize

Constructor Details

This class inherits a constructor from Minitest::StatisticsReporter

Instance Attribute Details

#old_syncObject

Returns the value of attribute old_sync.



825
826
827
# File 'lib/minitest.rb', line 825

def old_sync
  @old_sync
end

#syncObject

:stopdoc:



824
825
826
# File 'lib/minitest.rb', line 824

def sync
  @sync
end

Instance Method Details

#aggregated_results(io) ⇒ Object

:nodoc:



857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
# File 'lib/minitest.rb', line 857

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

  skip = options[:skip] || []

  filtered_results.each_with_index { |result, i|
    next if skip.include? result.result_code

    io.puts "\n%3d) %s" % [i+1, result]
  }
  io.puts
  io
end

#reportObject

:nodoc:



840
841
842
843
844
845
846
847
848
849
850
# File 'lib/minitest.rb', line 840

def report # :nodoc:
  super

  io.sync = self.old_sync

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

#startObject

:startdoc:



828
829
830
831
832
833
834
835
836
837
838
# File 'lib/minitest.rb', line 828

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:



852
853
854
855
# File 'lib/minitest.rb', line 852

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

#summaryObject

:nodoc:



877
878
879
880
881
882
883
884
885
886
# File 'lib/minitest.rb', line 877

def summary # :nodoc:
  extra = ""

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

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

#to_sObject

:nodoc:



873
874
875
# File 'lib/minitest.rb', line 873

def to_s # :nodoc:
  aggregated_results(StringIO.new(''.b)).string
end