LoginSignup
46
47

More than 5 years have passed since last update.

RailsでRspecを使用する

Posted at

インストール

Gemfileに以下を追記して'bundle install'する

group :development do
  gem 'rspec-rails'
end

group :test do
  gem 'rspec','2.5.0'
end

以下のコマンドでRspecに必要なディレクトリを作成

$ rails g rspec:install

以下のコマンドでRspecのコードを生成する

$ rails g rspec:controller [Controller_name]
$ rails g rspec:model [Model_Name]

以下のコマンドでRspecを実行する

$ rake rspec
46
47
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
46
47