2014年1月7日

Ruby on Rails 4.0 の rspec の導入

システム開発において、テストは重要です。
今回は、 rspec を導入します。


Rails 用に rspec-rails という gem があるので、導入しましょう。
> vi Gemfile
gem 'rspec-rails', group: [:development, :test]

gem をインストールします。以下のコマンドを実行します。
bundle install
rspec の初期設定を行います。
rails generate rspec:install
bundle binstubs rspec-core

テストは、以下のコマンドを実行します。
rake db:migrate
rake db:test:prepare
bundle exec rspec