Class: RSpec::Matchers::BuiltIn::RespondTo

Inherits:
Object
  • Object
show all
Defined in:
lib/rspec/matchers/built_in/respond_to.rb

Instance Method Summary (collapse)

Constructor Details

- (RespondTo) initialize(*names)

A new instance of RespondTo

5
6
7
8
# File 'lib/rspec/matchers/built_in/respond_to.rb', line 5
def initialize(*names)
  @names = names
  @expected_arity = nil
end

Instance Method Details

- (Object) argument Also known as: arguments

36
37
38
# File 'lib/rspec/matchers/built_in/respond_to.rb', line 36
def argument
  self
end

- (Object) description

27
28
29
# File 'lib/rspec/matchers/built_in/respond_to.rb', line 27
def description
  "respond to #{pp_names}#{with_arity}"
end

- (Boolean) does_not_match?(actual)

Returns:

  • (Boolean)
15
16
17
# File 'lib/rspec/matchers/built_in/respond_to.rb', line 15
def does_not_match?(actual)
  find_failing_method_names(actual, :select).empty?
end

- (Object) failure_message_for_should

19
20
21
# File 'lib/rspec/matchers/built_in/respond_to.rb', line 19
def failure_message_for_should
  "expected #{@actual.inspect} to respond to #{@failing_method_names.collect {|name| name.inspect }.join(', ')}#{with_arity}"
end

- (Object) failure_message_for_should_not

23
24
25
# File 'lib/rspec/matchers/built_in/respond_to.rb', line 23
def failure_message_for_should_not
  failure_message_for_should.sub(/to respond to/, 'not to respond to')
end

- (Boolean) matches?(actual) Also known as: ==

Returns:

  • (Boolean)
10
11
12
# File 'lib/rspec/matchers/built_in/respond_to.rb', line 10
def matches?(actual)
  find_failing_method_names(actual, :reject).empty?
end

- (Object) with(n)

31
32
33
34
# File 'lib/rspec/matchers/built_in/respond_to.rb', line 31
def with(n)
  @expected_arity = n
  self
end