free_mutant/lib/mutant/matcher.rb
Markus Schirp 10c3dfc390 Finalize method matching
* Add tests for all edge cases I could create
* Add infrastructure for loading mutations into the vm.
* The fun part is next!
2012-07-26 19:25:23 +02:00

19 lines
264 B
Ruby

module Mutant
# Abstract matcher to find ASTs to mutate
class Matcher
include Enumerable
# Enumerate mutatees
#
# @api private
#
# @return [undefined]
#
def each
Mutant.not_implemented(self)
end
private
end
end