debian-mirror-gitlab/spec/lib/sidebars/admin/panel_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
826 B
Ruby
Raw Normal View History

2023-06-20 00:43:36 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Sidebars::Admin::Panel, feature_category: :navigation do
let_it_be(:user) { build(:admin) }
let(:context) { Sidebars::Context.new(current_user: user, container: nil) }
2023-07-09 08:55:56 +05:30
let(:panel) { described_class.new(context) }
2023-06-20 00:43:36 +05:30
subject { described_class.new(context) }
2023-07-09 08:55:56 +05:30
describe '#aria_label' do
it 'returns the correct aria label' do
expect(panel.aria_label).to eq(_('Admin Area'))
end
2023-06-20 00:43:36 +05:30
end
2023-07-09 08:55:56 +05:30
describe '#super_sidebar_context_header' do
it 'returns a hash with the correct title and icon' do
expected_header = {
title: panel.aria_label,
icon: 'admin'
}
expect(panel.super_sidebar_context_header).to eq(expected_header)
end
end
it_behaves_like 'a panel with uniquely identifiable menu items'
2023-06-20 00:43:36 +05:30
end