Sha256: 542dd230da6b73472b3077877f0c1a94b62f827071e0f4e4cdb2dd34096401cb

Contents?: true

Size: 1.98 KB

Versions: 44

Compression:

Stored size: 1.98 KB

Contents

module RSpec
  module Matchers
    module BuiltIn
      class RespondTo
        def initialize(*names)
          @names = names
          @expected_arity = nil
        end

        def matches?(actual)
          find_failing_method_names(actual, :reject).empty?
        end
        alias == matches?

        def does_not_match?(actual)
          find_failing_method_names(actual, :select).empty?
        end

        def failure_message_for_should
          "expected #{@actual.inspect} to respond to #{@failing_method_names.collect {|name| name.inspect }.join(', ')}#{with_arity}"
        end

        def failure_message_for_should_not
          failure_message_for_should.sub(/to respond to/, 'not to respond to')
        end

        def description
          "respond to #{pp_names}#{with_arity}"
        end

        def with(n)
          @expected_arity = n
          self
        end

        def argument
          self
        end
        alias :arguments :argument

        private

        def find_failing_method_names(actual, filter_method)
          @actual = actual
          @failing_method_names = @names.__send__(filter_method) do |name|
            @actual.respond_to?(name) && matches_arity?(actual, name)
          end
        end

        def matches_arity?(actual, name)
          return true unless @expected_arity

          actual_arity = actual.method(name).arity
          if actual_arity < 0
            # ~ inverts the one's complement and gives us the number of required args
            ~actual_arity <= @expected_arity
          else
            actual_arity == @expected_arity
          end
        end

        def with_arity
          @expected_arity.nil?? "" :
            " with #{@expected_arity} argument#{@expected_arity == 1 ? '' : 's'}"
        end

        def pp_names
          # Ruby 1.9 returns the same thing for array.to_s as array.inspect, so just use array.inspect here
          @names.length == 1 ? "##{@names.first}" : @names.inspect
        end
      end
    end
  end
end

Version data entries

44 entries across 44 versions & 14 rubygems

Version Path
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
vagrant-unbundled-1.9.5.1 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
vagrant-unbundled-1.9.1.1 vendor/bundle/ruby/2.4.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
vagrant-unbundled-1.8.5.2 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
vagrant-unbundled-1.8.5.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
vagrant-unbundled-1.8.4.2 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
vagrant-unbundled-1.8.4.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
opal-rspec-cj-0.4.4 vendor_lib/rspec/matchers/built_in/respond_to.rb
opal-rspec-0.4.3 vendor_lib/rspec/matchers/built_in/respond_to.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/rspec-expectations-2.14.5/lib/rspec/matchers/built_in/respond_to.rb
opal-rspec-0.4.2 vendor_lib/rspec/matchers/built_in/respond_to.rb
opal-rspec-0.4.1 vendor_lib/rspec/matchers/built_in/respond_to.rb
opal-rspec-0.4.0 vendor_lib/rspec/matchers/built_in/respond_to.rb
opal-rspec-0.4.0.beta4 vendor_lib/rspec/matchers/built_in/respond_to.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/rspec-expectations-2.13.0/lib/rspec/matchers/built_in/respond_to.rb
dxruby_rp5-0.0.4 spec/vendor/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/respond_to.rb
rspec-expectations-2.14.5 lib/rspec/matchers/built_in/respond_to.rb
mango-0.8.0 vendor/bundler/ruby/2.1.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/respond_to.rb
mango-0.7.1 vendor/bundler/ruby/2.0.0/gems/rspec-expectations-2.14.4/lib/rspec/matchers/built_in/respond_to.rb