On Sep 29, 2008, at 2:26 AM, Mikel Lindsaar wrote:

On Mon, Sep 29, 2008 at 12:07 PM, David Chelimsky <[EMAIL PROTECTED] > wrote:
RSpec-1.1.5 has been released

rspec_team.should_receive(:thank_you).at_least(:once)
GmailMailer.post(email)

class GmailMailer
  class << self
    def post(email)
      email.send
    end
  end
end

class Email
  class << self
    def send
      rspec_team.thank_you
    end
  end
end

Scott

_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to