Class: Mutant::Selector::Null Private
- Inherits:
-
Mutant::Selector
- Object
- Mutant::Selector
- Mutant::Selector::Null
- 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
-
#call(_subject) ⇒ Enumerable<Test>
private
Tests for subject.
-
#name ⇒ String
private
Name of the strategy this selector implements.
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
19 20 21 |
# File 'lib/mutant/selector/null.rb', line 19 def call(_subject) EMPTY_ARRAY end |
#name ⇒ String
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.
Name of the strategy this selector implements
12 |
# File 'lib/mutant/selector/null.rb', line 12 def name = 'null' |