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

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

require 'spec_helper'

RSpec.describe Sidebars::Groups::Menus::ScopeMenu do
  let(:group) { build(:group) }
  let(:user) { group.owner }
  let(:context) { Sidebars::Groups::Context.new(current_user: user, container: group) }

  describe '#extra_nav_link_html_options' do
    subject { described_class.new(context).extra_nav_link_html_options }

    specify { is_expected.to match(hash_including(class: 'context-header has-tooltip', title: context.group.name)) }
  end
end