aboutsummaryrefslogtreecommitdiffstats
path: root/spec/mspec/lib/mspec/runner/formatters/summary.rb
blob: 0c9207194ca1c023031ba51c7f5a1b6c0e53ccd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'mspec/expectations/expectations'
require 'mspec/runner/formatters/dotted'

class SummaryFormatter < DottedFormatter
  # Callback for the MSpec :after event. Overrides the
  # callback provided by +DottedFormatter+ and does not
  # print any output for each example evaluated.
  def after(state)
    # do nothing
  end
end