前提・実現したいこと
system spec で sign_in メソッドが使えません。
request spec や view spec では使えています。
ruby
1# spec/system/companies_spec.rb 2require 'rails_helper' 3 4RSpec.feature 'Companies', type: :system, js: true do 5 before do 6 sign_in create(:user) 7 end
発生している問題・エラーメッセージ
NoMethodError: undefined method `sign_in' for #<RSpec::ExampleGroups::Companies::Nested:0x00007fd862c1a1c8>
補足情報
ヘルパーの指定は以下のようになっています。
ruby
1# spec/support/devise.rb 2RSpec.configure do |config| 3 config.include Devise::Test::IntegrationHelpers, type: :request 4 config.include Devise::Test::ControllerHelpers, type: :view 5end
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/23 06:09