File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/webmock-3.8.3/lib/webmock/matchers/

Viewing File: any_arg_matcher.rb

module WebMock
  module Matchers
    # this is a based on RSpec::Mocks::ArgumentMatchers::AnyArgMatcher
    class AnyArgMatcher
      def initialize(ignore)
      end

      def ==(other)
        true
      end
    end
  end
end