class Protest::Reports::Summary

The :summary report will output a brief summary with the total number of tests, assertions, passed tests, pending tests, failed tests and errors.

Public Class Methods

new(stream=STDOUT) click to toggle source

Set the stream where the report will be written to. STDOUT by default.

# File lib/protest/reports/summary.rb, line 12
def initialize(stream=STDOUT)
  @stream = stream
end