[rspec-users] Basic help
jazzez ravi
lists at ruby-forum.com
Thu Mar 19 05:28:42 EDT 2009
Hi All,
1. Just now I installed rspec1.2.0 and dependencies
2. Tried the 2 programs mentioned in http://rspec.info/.
# bowling_spec.rb
require 'bowling'
describe Bowling do
before(:each) do
@bowling = Bowling.new
end
it "should score 0 for gutter game" do
20.times { @bowling.hit(0) }
@bowling.score.should == 0
end
end
# bowling.rb
class Bowling
def hit(pins)
end
def score
0
end
end
3. Run the bowling_spec.rb file
>ruby bowling_spec.rb --format specdoc
4. getting error like
bowling_spec.rb:6: undefined method `describe' for main:Object
(NoMethodError)
5. So i tried to add these lines,
require 'rspec' --> no Such file to Load
require 'spec' --> No Error But also no output mentioned as per that
website.
Please anyone help to continue that program.
Regards,
P.Raveendran
http://raveendran.wordpress.com
--
Posted via http://www.ruby-forum.com/.
More information about the rspec-users
mailing list