Class: Mutant::Matcher::Methods

Inherits:
Mutant::Matcher show all
Includes:
AbstractType
Defined in:
lib/mutant/matcher/methods.rb

Overview

Abstract base class for matcher that returns method subjects from scope

Direct Known Subclasses

Instance, Singleton

Defined Under Namespace

Classes: Instance, Singleton

Instance Method Summary collapse

Methods inherited from Mutant::Matcher

build

Instance Method Details

#each(&block) ⇒ self, Enumerator<Subject>

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Enumerate subjects

Returns:

  • (self)

    if block given

  • (Enumerator<Subject>)

    otherwise



16
17
18
19
20
21
22
# File 'lib/mutant/matcher/methods.rb', line 16

def each(&block)
  return to_enum unless block_given?

  subjects.each(&block)

  self
end