Class: Spec::Matchers::RespondTo
- Defined in:
- lib/gems/rspec-1.1.12/lib/spec/matchers/respond_to.rb
Overview
:nodoc:
Instance Method Summary collapse
- #argument ⇒ Object (also: #arguments)
- #description ⇒ Object
- #failure_message ⇒ Object
-
#initialize(*names) ⇒ RespondTo
constructor
A new instance of RespondTo.
- #matches?(actual) ⇒ Boolean
- #negative_failure_message ⇒ Object
- #with(n) ⇒ Object
Constructor Details
#initialize(*names) ⇒ RespondTo
Returns a new instance of RespondTo.
5 6 7 8 9 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/respond_to.rb', line 5 def initialize(*names) @names = names @expected_arity = nil @names_not_responded_to = [] end |
Instance Method Details
#argument ⇒ Object Also known as: arguments
37 38 39 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/respond_to.rb', line 37 def argument self end |
#description ⇒ Object
27 28 29 30 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/respond_to.rb', line 27 def description # Ruby 1.9 returns the same thing for array.to_s as array.inspect, so just use array.inspect here "respond to #{pp_names}#{with_arity}" end |
#failure_message ⇒ Object
19 20 21 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/respond_to.rb', line 19 def "expected #{@actual.inspect} to respond to #{@names_not_responded_to.collect {|name| name.inspect }.join(', ')}#{with_arity}" end |
#matches?(actual) ⇒ Boolean
11 12 13 14 15 16 17 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/respond_to.rb', line 11 def matches?(actual) @actual = actual @names.each do |name| @names_not_responded_to << name unless actual.respond_to?(name) && matches_arity?(actual, name) end return @names_not_responded_to.empty? end |
#negative_failure_message ⇒ Object
23 24 25 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/respond_to.rb', line 23 def "expected #{@actual.inspect} not to respond to #{@names.collect {|name| name.inspect }.join(', ')}" end |
#with(n) ⇒ Object
32 33 34 35 |
# File 'lib/gems/rspec-1.1.12/lib/spec/matchers/respond_to.rb', line 32 def with(n) @expected_arity = n self end |