RSpec-1.1.5 has been released RSpec is a Behaviour Driven Development framework for Ruby. RSpec-1.1.5 has a ton of minor changes and bug fixes, and a few major ones. Please see the following for more information: http://rspec.info/rdoc/files/History_txt.html http://rspec.info/rdoc-rails/files/History_txt.html http://rspec.info http://github.com/dchelimsky/rspec/wikis http://rspec.lighthouseapp.com Thanks, The RSpec Development Team
On Mon, Sep 29, 2008 at 12:07 PM, David Chelimsky <dchelimsky at gmail.com> wrote:> RSpec-1.1.5 has been releasedrspec_team.should_receive(:thank_you).at_least(:once) GmailMailer.post(email) -- http://lindsaar.net/ Rails, RSpec and Life blog....
On Sep 29, 2008, at 2:26 AM, Mikel Lindsaar wrote:> On Mon, Sep 29, 2008 at 12:07 PM, David Chelimsky <dchelimsky at gmail.com > > 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