free_mutant/lib/mutant/config.rb

28 lines
496 B
Ruby
Raw Normal View History

module Mutant
# The configuration of a mutator run
class Config
include Adamantium::Flat, Anima.new(
:debug, :strategy, :matcher, :filter, :reporter
)
2013-03-27 10:52:02 -04:00
# Enumerate subjects
#
# @api private
#
# @return [self]
# if block given
#
# @return [Enumerator<Subject>]
# otherwise
#
# @api private
#
def subjects(&block)
return to_enum(__method__) unless block_given?
matcher.each(&block)
self
end
end
end