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
- - (Array, Hash) expected private
- - (String) failure_message private
- - (String) failure_message_when_negated private
-
- (Include) initialize(*expecteds)
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, unreadable_io?, #values_match?
Constructor Details
- (Include) initialize(*expecteds)
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
11 12 13 |
# File 'lib/rspec/matchers/built_in/include.rb', line 11 def initialize(*expecteds) @expecteds = expecteds 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.
29 30 31 |
# File 'lib/rspec/matchers/built_in/include.rb', line 29 def description improve_hash_formatting("include#{readable_list_of(expecteds)}") 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.
47 48 49 |
# File 'lib/rspec/matchers/built_in/include.rb', line 47 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.
23 24 25 |
# File 'lib/rspec/matchers/built_in/include.rb', line 23 def does_not_match?(actual) perform_match(actual) { |v| !v } end |
- (Array, Hash) 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.
53 54 55 56 57 58 59 |
# File 'lib/rspec/matchers/built_in/include.rb', line 53 def expected if expecteds.one? && Hash === expecteds.first expecteds.first else expecteds end 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.
35 36 37 |
# File 'lib/rspec/matchers/built_in/include.rb', line 35 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.
41 42 43 |
# File 'lib/rspec/matchers/built_in/include.rb', line 41 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.
17 18 19 |
# File 'lib/rspec/matchers/built_in/include.rb', line 17 def matches?(actual) perform_match(actual) { |v| v } end |