free_mutant/lib/mutant/matcher.rb
Markus Schirp dc893bfd7d Progress on method matching
* Adjust metrics
* Add initial integration spec on method matching
* Yard and Heckle coverage is at 100% (heckle cov is disputable)
* Rcov does not really make sense as MRI 1.8 cannot reach all code
  paths.
2012-07-24 01:41:08 +02:00

16 lines
253 B
Ruby

module Mutant
# Abstract filter for rubinius asts.
class Matcher
include Enumerable
# Return each matched node
#
# @api private
#
# @return [undefined]
#
def each
Mutant.not_implemented(self)
end
end
end