Class: RSpec::Matchers::BuiltIn::Include Private
- Inherits:
-
BaseMatcher
- Object
- BaseMatcher
- RSpec::Matchers::BuiltIn::Include
- Defined in:
- lib/rspec/matchers/built_in/include.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.
Provides the implementation for include
.
Not intended to be instantiated directly.
Constant Summary
Constant Summary
Constants inherited from BaseMatcher
Instance Method Summary (collapse)
- - (String) description private
- - (Boolean) diffable? private
- - (Boolean) does_not_match?(actual) private
- - (String) failure_message private
- - (String) failure_message_when_negated private
-
- (Include) initialize(*expected)
constructor
private
A new instance of Include.
- - (Boolean) matches?(actual) private
Methods inherited from BaseMatcher
#expects_call_stack_jump?, #match_unless_raises, #supports_block_expectations?
Methods included from Composable
#===, #and, #description_of, #or, should_enumerate?, surface_descriptions_in, #values_match?
Constructor Details
- (Include) initialize(*expected)
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.
Returns a new instance of Include
8 9 10 |
# File 'lib/rspec/matchers/built_in/include.rb', line 8 def initialize(*expected) @expected = expected end |
Instance Method Details
- (String) description
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.
26 27 28 |
# File 'lib/rspec/matchers/built_in/include.rb', line 26 def description improve_hash_formatting("include#{readable_list_of(expected)}") end |
- (Boolean) diffable?
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.
44 45 46 |
# File 'lib/rspec/matchers/built_in/include.rb', line 44 def diffable? !diff_would_wrongly_highlight_matched_item? end |
- (Boolean) does_not_match?(actual)
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.
20 21 22 |
# File 'lib/rspec/matchers/built_in/include.rb', line 20 def does_not_match?(actual) perform_match(actual) { |v| !v } end |
- (String) failure_message
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.
32 33 34 |
# File 'lib/rspec/matchers/built_in/include.rb', line 32 def ("to") { super } end |
- (String) failure_message_when_negated
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.
38 39 40 |
# File 'lib/rspec/matchers/built_in/include.rb', line 38 def ("not to") { super } end |
- (Boolean) matches?(actual)
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.
14 15 16 |
# File 'lib/rspec/matchers/built_in/include.rb', line 14 def matches?(actual) perform_match(actual) { |v| v } end |