10c3dfc390
* Add tests for all edge cases I could create * Add infrastructure for loading mutations into the vm. * The fun part is next!
19 lines
264 B
Ruby
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
|