##目的
Rspecを導入する。
##Rspecの導入
Gemfile
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails', '~> 4.0.0' #ここに追加
end
Gemfileを編集。
group :development, :test
内に記述する。
記述が完了したらターミナルでbundle install
を実行。
##Rspecの設定
ターミナルでrails g rspec:install
を実行
上記コマンドを実行すると.rspec
というファイルが生成されるので.rspec
内に下記の記述を追加。
--format documentation
##テストコードの記述
テストコード記述用のファイルを作成しテストコードを記述する。
ターミナルで下記を実行することでUserモデル用のファイルが生成される。
rails g rspec:model user