Module: RSpec::Matchers::DSL::DefaultImplementations

Includes:
BuiltIn::BaseMatcher::DefaultFailureMessages
Included in:
Matcher
Defined in:
lib/rspec/matchers/dsl.rb

Overview

Defines default implementations of the matcher protocol methods for custom matchers. You can override any of these using the Macros methods from within an RSpec::Matchers.define block.

Instance Method Summary (collapse)

Methods included from BuiltIn::BaseMatcher::DefaultFailureMessages

#failure_message, #failure_message_when_negated

Instance Method Details

- (Object) description

The default description.

385
386
387
388
389
# File 'lib/rspec/matchers/dsl.rb', line 385
def description
  english_name = EnglishPhrasing.split_words(name)
  expected_list = EnglishPhrasing.list(expected)
  "#{english_name}#{expected_list}#{chained_method_clause_sentences}"
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.

Used internally by objects returns by should and should_not.

Returns:

  • (Boolean)
380
381
382
# File 'lib/rspec/matchers/dsl.rb', line 380
def diffable?
  false
end

- (Boolean) expects_call_stack_jump?

Most matchers do not expect call stack jumps.

Returns:

  • (Boolean)
398
399
400
# File 'lib/rspec/matchers/dsl.rb', line 398
def expects_call_stack_jump?
  false
end

- (Boolean) supports_block_expectations?

Matchers do not support block expectations by default. You must opt-in.

Returns:

  • (Boolean)
393
394
395
# File 'lib/rspec/matchers/dsl.rb', line 393
def supports_block_expectations?
  false
end