free_mutant/lib/mutant/matcher.rb

16 lines
285 B
Ruby
Raw Normal View History

module Mutant
# Abstract matcher to find subjects to mutate
class Matcher
include Adamantium::Flat, AbstractType
# Call matcher
#
# @param [Env::Bootstrap] env
#
# @return [Enumerable<Subject>]
#
abstract_method :call
2013-06-14 14:54:02 -04:00
end # Matcher
end # Mutant