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

applications_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: eeda4fb844c57517e0238dffc4bbb237abf5fb24 (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::ApplicationsMenu, feature_category: :navigation do
  it_behaves_like 'User settings menu',
    link: '/-/profile/applications',
    title: _('Applications'),
    icon: 'applications',
    active_routes: { controller: 'oauth/applications' }

  it_behaves_like 'User settings menu #render? method'
end