free_mutant/lib/mutant/matcher.rb

47 lines
816 B
Ruby
Raw Normal View History

module Mutant
# Abstract matcher to find subjects to mutate
class Matcher
2012-11-26 05:30:00 -05:00
include Adamantium::Flat, Enumerable, AbstractType
extend DescendantsTracker
# Enumerate subjects
#
# @param [Object] input
#
# @return [self]
# if block given
#
# @return [Enumerator<Subject>]
#
# @api private
#
def self.each(input, &block)
return to_enum(__method__, input) unless block_given?
new(input).each(&block)
self
end
2012-08-01 12:34:03 -04:00
# Enumerate subjects
#
# @api private
#
# @return [self]
# if block given
#
# @return [Enumerabe<Subject>]
# otherwise
#
abstract_method :each
# Return identification
#
# @return [String
#
# @api private
#
abstract_method :identification
end
end