今回は、 rspec を導入します。
Rails 用に rspec-rails という gem があるので、導入しましょう。
> vi Gemfilegem をインストールします。以下のコマンドを実行します。
gem 'rspec-rails', group: [:development, :test]
bundle installrspec の初期設定を行います。
rails generate rspec:install
bundle binstubs rspec-core
テストは、以下のコマンドを実行します。
rake db:migrate
rake db:test:prepare
bundle exec rspec