I installed the autotest gem and intend to use it with rspec. The problem is, when I run autotest under my rails app, all I see is :

railsapp$ autospec

loading autotest/rails_rspec


And its stuck there until I Ctrl-C out of it. Nothing changes even if I change a rspec test or code.

Here's my ~/.autotest

require "autotest/restart"

require 'redgreen/autotest'

require 'autotest/fsevent'

require "autotest/growl"

link|improve this question

47% accept rate
Does running it with -v say the spec equivalent of No tests matched test\tc_foo.rb? – Andrew Grimm May 11 '10 at 1:03
Yes, it does say that.Any ideas ? – udit Jun 10 '10 at 12:02
I have the same issue. Verbose mode tells me "No tests matched". – gef Jul 22 '10 at 0:41
Rails/gem version? OS? – shmichael Sep 2 '10 at 15:11
feedback

3 Answers

I had the same problem. I was eventually able to get everything working by making sure I was on the latest (beta, if necessary) versions of rspec, rspec-rails, autotest, and autotest-rails, and putting the following in autotest/discovery.rb:

Autotest.add_discovery { "rails" }
Autotest.add_discovery { "rspec2" }

Here's the blog post that got me started in the right direction.

link|improve this answer
feedback

Cd into app directory and run the command: AUTOFEATURE=true autospec

To stop this process ^C twice

link|improve this answer
feedback

I had the same problem, and this fixed it:

"Make sure you have a .rspec file in the project root. That tells RSpec to tell Autotest to load RSpec’s autotest extension."

ref: https://github.com/rspec/rspec/wiki/autotest

It seems as if my .rspec file had gotten deleted when messing around with git.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.