Class: RSpec::Matchers::BuiltIn::Include Private

Inherits:
BaseMatcher show all
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

BaseMatcher::UNDEFINED

Instance Method Summary (collapse)

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.

Returns:

  • (String)
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.

Returns:

  • (Boolean)
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.

Returns:

  • (Boolean)
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.

Returns:

  • (String)
32
33
34
# File 'lib/rspec/matchers/built_in/include.rb', line 32
def failure_message
  format_failure_message("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.

Returns:

  • (String)
38
39
40
# File 'lib/rspec/matchers/built_in/include.rb', line 38
def failure_message_when_negated
  format_failure_message("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.

Returns:

  • (Boolean)
14
15
16
# File 'lib/rspec/matchers/built_in/include.rb', line 14
def matches?(actual)
  perform_match(actual) { |v| v }
end