free_mutant/lib/mutant/matcher.rb
Markus Schirp 42e6fe84e5 Add runner with reporter
* Use MethodObject mixin
* Rename Context::Constant to Context::Scope
* Use Mutation class instead of passing around raw nodes
2012-08-16 04:10:54 +02:00

25 lines
368 B
Ruby

module Mutant
# Abstract matcher to find ASTs to mutate
class Matcher
include Enumerable, Abstract
# Enumerate subjects
#
# @api private
#
# @return [undefined]
#
abstract_method :each
# Return identification
#
# @return [String
#
# @api private
#
abstract_method :identification
private
end
end