class RSpec::Matchers::BuiltIn::Include

def does_not_match?(actual)

Returns:
  • (Boolean) -

Other tags:
    Api: - private
def does_not_match?(actual)
  check_actual?(actual) &&
    if check_expected_count?
      !expected_count_matches?(count_inclusions)
    else
      perform_match { |v| !v }
    end
end