Fix Sign out

This commit is contained in:
simon lehericey 2019-08-14 16:58:50 +02:00
parent 9fc63d923f
commit 149b0b5797
2 changed files with 17 additions and 8 deletions

View file

@ -0,0 +1,17 @@
require 'spec_helper'
feature 'Sign out' do
context 'when a user is logged in' do
let(:user) { create(:administrateur).user }
before { login_as user, scope: :user }
scenario 'he can sign out' do
visit dossiers_path
click_on 'Se déconnecter'
expect(page).to have_current_path(root_path)
end
end
end