# File lib/rr/wildcard_matchers/hash_including.rb, line 10
      def wildcard_match?(other)
        self == other || (
          other.is_a?(Hash) &&
          expected_hash.all? { |k, v|
            other.key?(k) && other[k] == expected_hash[k]
          }
        )
      end