rspec returns nothing
- by Nicolo77
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*