require "spec_helper" describe Gestionnaires::PasswordsController, type: :controller do before do @request.env["devise.mapping"] = Devise.mappings[:gestionnaire] end describe "update" do context "when associated gestionnaire" do let(:gestionnaire) { create(:gestionnaire, email: 'unique@plop.com', password: 'password') } let(:user) { create(:user, email: 'unique@plop.com', password: 'password') } before do @token = gestionnaire.send(:set_reset_password_token) user # make sure it's created end it "also signs user in" do put :update, gestionnaire: { reset_password_token: @token, password: "supersecret", password_confirmation: "supersecret", } expect(subject.current_gestionnaire).to eq(gestionnaire) expect(subject.current_user).to eq(user) end end end end