Class: Mutant::Selector::Null Private

Inherits:
Mutant::Selector show all
Defined in:
lib/mutant/selector/null.rb

Overview

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

Selector that never returns tests

Instance Method Summary collapse

Instance Method Details

#call(_subject) ⇒ Enumerable<Test>

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.

Tests for subject

Parameters:

Returns:

  • (Enumerable<Test>)


14
15
16
# File 'lib/mutant/selector/null.rb', line 14

def call(_subject)
  EMPTY_ARRAY
end