Rename StandardFormatter to DefaultFormatter

This commit is contained in:
Michael Miller 2018-09-15 10:57:49 -06:00
parent cfe1a014dd
commit a1871ca62e
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ require "colorize"
module Spectator module Spectator
module Formatters module Formatters
class StandardFormatter < Formatter class DefaultFormatter < Formatter
def start_suite def start_suite
end end

View file

@ -4,7 +4,7 @@ require "./successful_example_result"
module Spectator module Spectator
class Runner class Runner
def initialize(@group : ExampleGroup, def initialize(@group : ExampleGroup,
@formatter : Formatters::Formatter = Formatters::StandardFormatter.new) @formatter : Formatters::Formatter = Formatters::DefaultFormatter.new)
end end
def run : Nil def run : Nil