class Mutest::Matcher::Method

Abstract base class for method matchers

Constants

BLACKLIST

Methods within rbx kernel directory are precompiled and their source cannot be accessed via reading source location. Same for methods created by eval.

CLOSURE_WARNING_FORMAT
SOURCE_LOCATION_WARNING_FORMAT

Public Instance Methods

call(env) click to toggle source

Matched subjects

@param [Env::Bootstrap] env

@return [Enumerable<Subject>]

# File lib/mutest/matcher/method.rb, line 24
def call(env)
  evaluator.call(scope, target_method, env)
end