0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

RSpecの導入

Posted at

##目的
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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?