summaryrefslogtreecommitdiff
path: root/spec/mspec/lib/mspec/runner/formatters/summary.rb
blob: 2dfa751b579eb801ba9d7335cbd9a3a4c08152c1 (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 = nil)
    # do nothing
  end
end