# File lib/shoulda/context.rb, line 71 71: def should(name_or_matcher, options = {}, &blk) 72: if Shoulda.current_context 73: Shoulda.current_context.should(name_or_matcher, options, &blk) 74: else 75: context_name = self.name.gsub(/Test/, "") 76: context = Shoulda::Context.new(context_name, self) do 77: should(name_or_matcher, options, &blk) 78: end 79: context.build 80: end 81: end