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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/sidebars/organizations/super_sidebar_panel_spec.rb')
-rw-r--r--spec/lib/sidebars/organizations/super_sidebar_panel_spec.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/spec/lib/sidebars/organizations/super_sidebar_panel_spec.rb b/spec/lib/sidebars/organizations/super_sidebar_panel_spec.rb
new file mode 100644
index 00000000000..99b33a5edf8
--- /dev/null
+++ b/spec/lib/sidebars/organizations/super_sidebar_panel_spec.rb
@@ -0,0 +1,39 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Sidebars::Organizations::SuperSidebarPanel, feature_category: :navigation do
+ let_it_be(:organization) { build(:organization) }
+ let_it_be(:user) { build(:user) }
+ let_it_be(:context) do
+ Sidebars::Context.new(
+ current_user: user,
+ container: organization
+ )
+ end
+
+ subject { described_class.new(context) }
+
+ it 'implements #super_sidebar_context_header' do
+ expect(subject.super_sidebar_context_header).to eq(
+ {
+ title: organization.name,
+ id: organization.id
+ })
+ end
+
+ describe '#renderable_menus' do
+ let(:category_menu) do
+ [
+ Sidebars::StaticMenu,
+ Sidebars::Organizations::Menus::ManageMenu
+ ]
+ end
+
+ it "is exposed as a renderable menu" do
+ expect(subject.instance_variable_get(:@menus).map(&:class)).to eq(category_menu)
+ end
+ end
+
+ it_behaves_like 'a panel with uniquely identifiable menu items'
+end