Class: Mutant::Selector Private
- Inherits:
-
Object
- Object
- Mutant::Selector
- Includes:
- Unparser::AbstractType, Unparser::Adamantium
- Defined in:
- lib/mutant/selector.rb,
lib/mutant/selector/null.rb,
lib/mutant/selector/expression.rb,
lib/mutant/selector/context_map.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.
Abstract base class for test selectors
Direct Known Subclasses
Defined Under Namespace
Classes: ContextMap, Expression, Null
Instance Method Summary collapse
-
#call ⇒ Enumerable<Test>
private
Tests for subject.
-
#name ⇒ String
private
Name of the strategy this selector implements.
Instance Method Details
#call ⇒ 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
13 |
# File 'lib/mutant/selector.rb', line 13 abstract_method :call |
#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
18 |
# File 'lib/mutant/selector.rb', line 18 abstract_method :name |