Installing RSpec

suggest change

If you want to use RSpec for a Rails project, you should use the rspec-rails gem, which can generate helpers and spec files for you automatically (for example, when you create models, resources or scaffolds using rails generate).

Add rspec-rails to both the :development and :test groups in the Gemfile:

group :development, :test do
  gem 'rspec-rails', '~> 3.5'
end

Run bundle to install the dependencies.

Initialize it with:

rails generate rspec:install

This will create a spec/ folder for your tests, along with the following configuration files:

All these files are written with sensible defaults to get you started, but you can add features and change configurations to suit your needs as your test suite grows.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


RSpec and Ruby on Rails:
*Installing RSpec

Table Of Contents
40RSpec and Ruby on Rails
55CSV