rspec spec時のNameError: undefined local variable or method `config' for main:Objectの対処法
rails5中級チュートリアル中のテスト実行時に起こったエラー
エラー文
ターミナル
#rsepc spec 実行時
NameError:
undefined local variable or method `config' for main:Object
原因と解決
rails_helper.rbへgemメソッドを使えるようにする記述の記述場所が誤っていた。
rails_helper.rb
下記の記述をRSpec.configure do |config|の中に記述していなかったのが原因
config.include Devise::Test::IntegrationHelpers, type: :feature
config.include FactoryBot::Syntax::Methods
Capybara.javascript_driver = :poltergeist
Capybara.server = :puma
これでもう一度テストを実行すると...
ターミナル
Finished in 0.17382 seconds (files took 5.23 seconds to load)
2 examples, 0 failures
無事成功😆
反省
今回のエラーで1時間ほど時間を食ってしまった。中級チュートリアルの記事をよく見返すと今回の原因が書いてあったので、以後チュートリアルを進める際は、細部まで目を通すことを心がける。
Author And Source
この問題について(rspec spec時のNameError: undefined local variable or method `config' for main:Objectの対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/kuromu0104/items/9da080c4874d2f5e9c0b著者帰属:元の著者の情報は、元の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 .