Spec: specify the redirections when logged in

This commit is contained in:
simon lehericey 2019-08-16 12:25:28 +02:00
parent 56d34173e6
commit 9a6b3c3757

View file

@ -20,11 +20,22 @@ describe Users::SessionsController, type: :controller do
it 'signs in' do
subject
expect(response.redirect?).to be(true)
expect(controller).not_to redirect_to link_sent_path(email: email)
expect(response).to redirect_to(root_path)
expect(controller.current_user).to eq(user)
expect(user.loged_in_with_france_connect).to be(nil)
end
context 'when a previous path was registered' do
let(:stored_path) { 'a_path' }
before { controller.store_location_for(:user, stored_path) }
it 'redirects to that previous path' do
subject
expect(response).to redirect_to(stored_path)
end
end
end
context 'when the credentials are wrong' do