Class: RSpec::Matchers::RespondTo
- Inherits:
-
Object
- Object
- RSpec::Matchers::RespondTo
- Defined in:
- lib/rspec/matchers/respond_to.rb
Overview
:nodoc:
Instance Method Summary collapse
- #argument ⇒ Object (also: #arguments)
- #description ⇒ Object
- #does_not_match?(actual) ⇒ Boolean
- #failure_message_for_should ⇒ Object
- #failure_message_for_should_not ⇒ Object
-
#initialize(*names) ⇒ RespondTo
constructor
A new instance of RespondTo.
- #matches?(actual) ⇒ Boolean
- #with(n) ⇒ Object
Constructor Details
#initialize(*names) ⇒ RespondTo
Returns a new instance of RespondTo.
5 6 7 8 |
# File 'lib/rspec/matchers/respond_to.rb', line 5 def initialize(*names) @names = names @expected_arity = nil end |
Instance Method Details
#argument ⇒ Object Also known as: arguments
35 36 37 |
# File 'lib/rspec/matchers/respond_to.rb', line 35 def argument self end |
#description ⇒ Object
26 27 28 |
# File 'lib/rspec/matchers/respond_to.rb', line 26 def description "respond to #{pp_names}#{with_arity}" end |
#does_not_match?(actual) ⇒ Boolean
14 15 16 |
# File 'lib/rspec/matchers/respond_to.rb', line 14 def does_not_match?(actual) find_failing_method_names(actual, :select).empty? end |
#failure_message_for_should ⇒ Object
18 19 20 |
# File 'lib/rspec/matchers/respond_to.rb', line 18 def "expected #{@actual.inspect} to respond to #{@failing_method_names.collect {|name| name.inspect }.join(', ')}#{with_arity}" end |
#failure_message_for_should_not ⇒ Object
22 23 24 |
# File 'lib/rspec/matchers/respond_to.rb', line 22 def .sub(/to respond to/, 'not to respond to') end |
#matches?(actual) ⇒ Boolean
10 11 12 |
# File 'lib/rspec/matchers/respond_to.rb', line 10 def matches?(actual) find_failing_method_names(actual, :reject).empty? end |
#with(n) ⇒ Object
30 31 32 33 |
# File 'lib/rspec/matchers/respond_to.rb', line 30 def with(n) @expected_arity = n self end |