demarches-normaliennes/spec/controllers/instructeurs/activate_controller_spec.rb

21 lines
599 B
Ruby
Raw Normal View History

describe Instructeurs::ActivateController, type: :controller do
2018-10-30 18:24:29 +01:00
describe '#new' do
let(:instructeur) { create(:instructeur) }
let(:token) { instructeur.send(:set_reset_password_token) }
2018-10-30 18:24:29 +01:00
before { allow(controller).to receive(:trust_device) }
context 'when the token is ok' do
before { get :new, params: { token: token } }
it { expect(controller).to have_received(:trust_device) }
end
context 'when the token is bad' do
before { get :new, params: { token: 'bad' } }
it { expect(controller).not_to have_received(:trust_device) }
end
end
end