# File lib/shoulda/context.rb, line 133
133:     def should_eventually(name, options = {}, &blk)
134:       context_name = self.name.gsub(/Test/, "")
135:       context = Shoulda::Context.new(context_name, self) do
136:         should_eventually(name, &blk)
137:       end
138:       context.build
139:     end