- Add the following to your gem file
group :test do
gem 'rspec-rails'
gem 'capybara'
gem 'launchy'
end
- Run
bundle install
- Add the rspec config
rails g rspec:install
- Make a directory for the features:
mkdir spec/features
- Create your first feature - Example: 'user_submits_application_spec.rb'
- Be sure to move over your database:
rake db:test:prepare
Other Notes: