class Should

def not(*args, &block)

def not(*args, &block)
  @negated = !@negated
  if args.empty?
    self
  else
    be(*args, &block)
  end
end