free_mutant/lib/mutant/runner/config.rb
Markus Schirp f2a6243ac0 Connect reporters with runners
This fixes all unit and integration specs!
2013-04-21 02:20:18 +02:00

72 lines
1.2 KiB
Ruby

module Mutant
class Runner
# Runner for object config
class Config < self
# Return subject runners
#
# @return [Enumerable<Runner::Subject>]
#
# @api private
#
attr_reader :subjects
# Return failed subjects
#
# @return [Enumerable<Subject>]
#
# @api private
#
def failed_subjects
subjects.select(&:failed?)
end
memoize :failed_subjects
# Test if run was successful
#
# @return [true]
# if run was successful
#
# @return [false]
# otherwise
#
# @api private
#
def success?
failed_subjects.empty?
end
memoize :success?
# Return strategy
#
# @return [Strategy]
#
# @api private
#
def strategy
config.strategy
end
private
# Run config
#
# @return [undefined]
#
# @api private
#
def run
report(config)
strategy = self.strategy
strategy.setup
@subjects = config.subjects.map do |subject|
Subject.run(self, subject)
end
strategy.teardown
@end = Time.now
report(self)
end
end
end
end