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
Constants inherited from BaseMatcher
Instance Method Summary collapse
- #description ⇒ String private
- #diffable? ⇒ Boolean private
- #does_not_match?(actual) ⇒ Boolean private
- #failure_message ⇒ String private
- #failure_message_when_negated ⇒ String private
-
#initialize(*expected) ⇒ Include
constructor
private
A new instance of Include.
- #matches?(actual) ⇒ Boolean private
Methods inherited from BaseMatcher
#match_unless_raises, #supports_block_expectations?
Methods included from Composable
#===, #and, #description_of, enumerable?, #or, surface_descriptions_in, #values_match?
Methods included from Pretty
#name, split_words, #to_sentence, #to_word
Constructor Details
#initialize(*expected) ⇒ Include
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
#description ⇒ 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.
28 29 30 31 |
# File 'lib/rspec/matchers/built_in/include.rb', line 28 def description described_items = surface_descriptions_in(expected) improve_hash_formatting "include#{to_sentence(described_items)}" end |
#diffable? ⇒ Boolean
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? true end |
#does_not_match?(actual) ⇒ Boolean
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.
21 22 23 24 |
# File 'lib/rspec/matchers/built_in/include.rb', line 21 def does_not_match?(actual) @actual = actual perform_match(:none?, :any?) end |
#failure_message ⇒ 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.
35 36 37 |
# File 'lib/rspec/matchers/built_in/include.rb', line 35 def improve_hash_formatting(super) end |
#failure_message_when_negated ⇒ 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.
41 42 43 |
# File 'lib/rspec/matchers/built_in/include.rb', line 41 def improve_hash_formatting(super) end |
#matches?(actual) ⇒ Boolean
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 17 |
# File 'lib/rspec/matchers/built_in/include.rb', line 14 def matches?(actual) @actual = actual perform_match(:all?, :all?) end |