LoginSignup
0
0

More than 3 years have passed since last update.

rspec-railsで使うコマンドを羅列する

Last updated at Posted at 2020-03-16

使うコマンドを雑多にメモる。

導入

Gemfile
group :development, :test do
  gem 'rspec-rails', '~> 3.6.0'
  gem 'factory_bot_rails'
end
spec/support/factory_bot.rb
RSpec.configure do |config|
  config.include FactoryBot::Syntax::Methods
end
$ rails g rspec:install
.....
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