Class: RSpec::Matchers::BuiltIn::StartOrEndWith Private
- Inherits:
-
BaseMatcher
- Object
- BaseMatcher
- RSpec::Matchers::BuiltIn::StartOrEndWith
- Defined in:
- lib/rspec/matchers/built_in/start_or_end_with.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.
Base class for the end_with
and start_with
matchers.
Not intended to be instantiated directly.
Constant Summary
Constant Summary
Constants inherited from BaseMatcher
Instance Method Summary (collapse)
- - (String) description private
- - (String) failure_message private
-
- (StartOrEndWith) initialize(*expected)
constructor
private
A new instance of StartOrEndWith.
Methods inherited from BaseMatcher
#diffable?, #expects_call_stack_jump?, #match_unless_raises, #matches?, #supports_block_expectations?
Methods included from BaseMatcher::DefaultFailureMessages
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
- (StartOrEndWith) 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 StartOrEndWith
8 9 10 11 |
# File 'lib/rspec/matchers/built_in/start_or_end_with.rb', line 8 def initialize(*expected) @actual_does_not_have_ordered_elements = false @expected = expected.length == 1 ? expected.first : 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.
27 28 29 30 |
# File 'lib/rspec/matchers/built_in/start_or_end_with.rb', line 27 def description return super unless Hash === expected "#{name_to_sentence} #{surface_descriptions_in(expected).inspect}" 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.
15 16 17 18 19 20 21 22 23 |
# File 'lib/rspec/matchers/built_in/start_or_end_with.rb', line 15 def super.tap do |msg| if @actual_does_not_have_ordered_elements msg << ", but it does not have ordered elements" elsif !actual.respond_to?(:[]) msg << ", but it cannot be indexed using #[]" end end end |