dc893bfd7d
* 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.
16 lines
253 B
Ruby
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
|