Install RSpec, Capybara and FactoryGirl

danejTest Driven DevelopmentLeave a Comment

Add the gems to your Gemfile group :development, :test do gem ‘rspec-rails’ gem ‘factory_girl_rails’ end group :test do gem ‘capybara’ end Download and install $ bundle install Initialize the spec directory $ rails g rspec:install Require Capybara #spec/spec_helper.rb require ‘capybara/rspec’ Drop in your factories into /spec/factories/MODEL_NAMES.rb (replace model_names with the actual name of your models. Factory example for a Contact … Read More