# File lib/webmock/matchers/hash_including_matcher.rb, line 10
      def ==(actual)
        @expected.all? {|k,v| actual.has_key?(k) && v === actual[k]}
      rescue NoMethodError
        false
      end