Displaying 3 results from an estimated 3 matches for "achbd".
Did you mean:
acbd
2009 Jan 08
3
any eta on the rspec book?
Subject says it all...
Thanks in advance,
T
2009 Oct 23
10
Rspec Tutorial
Hi Everybody,
Greetings!!
I want to use rspec for my applications. Please guide me with the Rspec
tutorial.
I want a good example to start with.
Please help me by providing good tutorials on Rspec to start with.
I actually followed the example from http://rspec.info
Please guide me on more examples.
Waiting for your reply.
--~--~---------~--~----~------------~-------~--~----~
You received
2010 Jun 01
1
RSpec book errata #57 - undefined method `include' : what to do?
http://pragprog.com/titles/achbd/errata
nr 57:
Ruby 1.8.7
expected [] to include "Welcome to Codebreaker!"
Ruby 1.9.1
undefined method `include'' for #<Object:0x80b32c90> (NoMethodError)
---
class Output
def messages
@messages ||= []
end
def puts(message)
messages << message
end
en...