gitlab-org--gitlab-foss/spec/features/users/logout_spec.rb
Rémy Coutable fc7f1aa244
Fix user feature specs that were hardcoding 'user1'
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-02-22 12:44:14 +01:00

22 lines
416 B
Ruby

require 'spec_helper'
describe 'Logout/Sign out', :js do
let(:user) { create(:user) }
before do
sign_in(user)
visit root_path
end
it 'sign out redirects to sign in page' do
gitlab_sign_out
expect(current_path).to eq new_user_session_path
end
it 'sign out does not show signed out flash notice' do
gitlab_sign_out
expect(page).not_to have_selector('.flash-notice')
end
end