shard-spectator/src/spectator/config.cr

12 lines
306 B
Crystal
Raw Normal View History

module Spectator
# Provides customization and describes specifics for how Spectator will run and report tests.
class Config
2018-12-13 21:16:49 +00:00
# Used to report test progress and results.
getter formatter : Formatting::Formatter
2018-12-13 21:16:49 +00:00
# Creates a new configuration.
def initialize(@formatter)
end
end
end