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

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

require 'spec_helper'

RSpec.describe Sidebars::Admin::Menus::DeployKeysMenu, feature_category: :navigation do
  it_behaves_like 'Admin menu',
    link: '/admin/deploy_keys',
    title: s_('Admin|Deploy Keys'),
    icon: 'key'

  it_behaves_like 'Admin menu without sub menus', active_routes: { controller: :deploy_keys }
end