class Mutest::Matcher::Method::Singleton

Matcher for singleton methods

Public Class Methods

new(scope, method_name) click to toggle source

New singleton method matcher

@param [Class, Module] scope @param [Symbol] method_name

@return [Matcher::Method::Singleton]

Calls superclass method
# File lib/mutest/matcher/method/singleton.rb, line 12
def self.new(scope, method_name)
  super(scope, method_name, Evaluator)
end