RSpecの導入と単体テストコード実行の手順
4807 ワード
Gemfileをインストール
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
bundle install実行
ターミナル
bundle install
RSpecの設定を行う
ターミナル
rails g rspec:install
実行すると、以下のようにディレクトリやファイルが生成されます。
ターミナル
create .rspec
create spec
create spec/spec_helper.rb
create spec/rails_helper.rb
.rspecに以下を追加
.rspecというファイルをテキストエディタで開き、以下のように記述します。この記述は、テストコードの結果をターミナル上で可視化するための記述です。
.rspec
--require spec_helper
--format documentation
これでRSpecの設定は完了。
テストコードを各ファイルの生成
ターミナル
% rails g rspec:model user
spec/models/user_spec.rb
require 'rails_helper'
RSpec.describe User, type: :model do
describe 'ユーザー新規登録' do
it "nicknameが空だと登録できない" do
end
it "emailが空では登録できない" do
end
end
end
テストコード実行
ターミナル
bundle exec rspec spec/models/hoge_spec.rb
Author And Source
この問題について(RSpecの導入と単体テストコード実行の手順), 我々は、より多くの情報をここで見つけました https://qiita.com/mr0216/items/7bd9b0f6b660560ebfea著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .