class RSpec::Matchers::DSL::Matcher

def does_not_match?(actual)

Other tags:
    Api: - private
def does_not_match?(actual)
  @actual = actual
  @match_for_should_not_block ?
    instance_eval_with_args(actual, &@match_for_should_not_block) :
    !matches?(actual)
end