# File lib/shoulda/context.rb, line 90
 90:     def should_not(matcher)
 91:       if Shoulda.current_context
 92:         Shoulda.current_context.should_not(matcher)
 93:       else
 94:         context_name = self.name.gsub(/Test/, "")
 95:         context = Shoulda::Context.new(context_name, self) do
 96:           should_not(matcher)
 97:         end
 98:         context.build
 99:       end
100:     end