summaryrefslogtreecommitdiff
path: root/spec/features/profiles/user_visits_profile_authentication_log_spec.rb
blob: 0f419c3c2c0280b75c9333d16d267baa3d1a26e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'spec_helper'

describe 'User visits the authentication log' do
  let(:user) { create(:user) }

  context 'when user signed in' do
    before do
      sign_in(user)
    end

    it 'shows correct menu item' do
      visit(audit_log_profile_path)

      expect(page).to have_active_navigation('Authentication log')
    end
  end

  context 'when user has activity' do
    before do
      create(:closed_issue_event, author: user)
      gitlab_sign_in(user)
    end

    it 'shows user activity' do
      visit(audit_log_profile_path)

      expect(page).to have_content 'Signed in with standard authentication'
    end
  end
end