views:

146

answers:

1

What's the best practice for getting RSpec / Autotest going on a Rails project?

I googled some stuff but it feels like it may be out of date.

+3  A: 

By far the easiest thing to do after installing the rspec gem and the rspec-rails gem is to use:

autospec

instead of

autotest
Sam Saffron
yeah use AutoSpec :)
Rishav Rastogi
Works as long as you have first done: ./script/generate rspec in your Rails app.
Evolve