Welcome to mirror list, hosted at ThFree Co, Russian Federation.

authentication_log_menu_spec.rb « menus « user_settings « sidebars « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a154d7dafb2ce3be98d10ebf6765df077f057f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Sidebars::UserSettings::Menus::AuthenticationLogMenu, feature_category: :navigation do
  it_behaves_like 'User settings menu',
    link: '/-/user_settings/authentication_log',
    title: _('Authentication Log'),
    icon: 'log',
    active_routes: { path: 'user_settings#authentication_log' }

  it_behaves_like 'User settings menu #render? method'
end