Using `stub` from rspec-mocks' old `:should` syntax without explicitly enabling the syntax is deprecated. Use the new `:expect` syntax or explicitly enable `:should` instead. Called from
こんなメッセージが出て、stub使うと怒られる。
controller.stub(:current_user).and_return(user)
こんなstubがあったら
allow(controller).to receive(:current_user).and_return(user)
こんな感じで変更すればOK
追記
raiseしたい場合は
allow(User).to receive(:find).and_raise(ActiveRecord::RecordNotFound)