技術系ブログ

とにかく小ネタで

【Rspec】undefined method `sign_in' エラー対処法

deviseをRspecでテストしているときにタイトルのようなエラーが出たので

解決策

spec/rails_helper.rb

RSpec.configure do |config|
  config.include Devise::Test::ControllerHelpers, type: :controller
 #この一行を追加する

end

参考:

【Rails4】Devise::MissingWarden エラーへの対処 - How To: Test controllers with Rails (and RSpec) · plataformatec/devise Wiki · GitHub