rspec: using rspec in your rails projects
Montag, 11. April 2011, 20:47 Uhr | roberto@vasquez-angel.de |Install the rspec gem:
$> gem install rspec-rails
Add rspec to your Rails.root/Gemfile
:
group :test, :development do gem "rspec-rails" end
Install your bundle:
$> bundle install
Generate the basic rspec files:
$> rails g rspec:install