概要
###どのよう手順でRSpecを導入するのか。忘れてしまう場面が度々ありましたのでここに記述します。
RSpecの導入手順
1.Gemfileに「development, :test」内に「gem 'rspec-rails', '~> 4.0.0'」を記述する。
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
##2.ターミナルで「bundle install」を記述
##3.ターミナルで「rails g rspec:install」を記述
##4. .rspec内に「--format documentation」を記述する。(ターミナル上でテストコードの結果を可視化するため)
ruby.rspec
--require spec_helper
--format documentation
##5. ターミナルでテストコード用のモデルを作成する。