crucoba
1
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.lighthouseapp.com
Thanks,
The RSpec Development Team
crucoba
2
On Mon, Sep 29, 2008 at 12:07 PM, David C. [email protected]
wrote:
RSpec-1.1.5 has been released
rspec_team.should_receive(:thank_you).at_least(:once)
GmailMailer.post(email)
crucoba
3
On Sep 29, 2008, at 2:26 AM, Mikel L. wrote:
On Mon, Sep 29, 2008 at 12:07 PM, David C. <[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
crucoba
4
On Mon, Sep 29, 2008 at 9:01 PM, Scott T.
[email protected] wrote:
Nice 