class Spec::Expectations::NegativeExpectationHandler

def self.handle_matcher(actual, matcher, message, &block)

def self.handle_matcher(actual, matcher, message, &block)
  Spec::Matchers.last_should = :should_not
  Spec::Matchers.last_matcher = matcher
  if matcher.nil?
    return Spec::Matchers::NegativeOperatorMatcher.new actual
  end
end