#エラー内容
Rspecを使ったテストを実行する際、以下のようなエラーが発生。
An error occurred while loading ./spec/models/board_spec.rb.
Failure/Error: config.include FactoryBot::Syntax::Methods
NameError:
uninitialized constant FactoryBot
#行ったこと
参考
http://yurafuca.hatenablog.com/entry/2018/06/28/190842
https://qiita.com/Sa2Knight/items/90d32c9b8493d6bf94b3
・gemにrspec-railsを導入済み
・rspecの初期ファイルを作成済み
#エラー原因
spec/rails_helper.rbの一番最初の行にいきなりconfig.include FactoryBot::Syntax::Methods
を記入してしまった。
下記が正しい書き方。
RSpec.configure do |config|
# 中略
config.include FactoryBot::Syntax::Methods
end