rspec returns nothing
Posted
by Nicolo77
on Stack Overflow
See other posts from Stack Overflow
or by Nicolo77
Published on 2010-04-12T19:42:11Z
Indexed on
2010/04/20
19:43 UTC
Read the original article
Hit count: 295
ruby-on-rails
|rspec
I am trying to use rspec on my rails application
I run "spec path/to/spec/spec.rb" and it appears to do nothing and returns nothing. I receive no error
Rails Version 2.3.4 Ruby 1.8.7 Rspec 1.3.0 rspec-rails 1.3.2
Any help is appreciated. Thanks.
I'm still getting nothing when running "spec spec/models/fee_spec.rb" or any other *_spec.rb It works fine for my co-worker on his mac Here is the file fee_spec.rb
*File.dirname(FILE) + '/../spec_helper'
describe Fee do
it "should be valid" do
Fee.new.should be_valid
end
end*
© Stack Overflow or respective owner