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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-06 15:11:09 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-06 15:11:09 +0300
commite9aabbc4b5c80a569ce7e5909bd9d8def11b7a1b (patch)
tree2bc9ed254deba51c4041c1ee2fb8dcc7bd3dfaad /spec/views/shared
parent08608c8e9e9821858dd2f452a3c9ebfb945ab69f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/views/shared')
-rw-r--r--spec/views/shared/nav/_sidebar.html.haml_spec.rb43
-rw-r--r--spec/views/shared/runners/_runner_details.html.haml_spec.rb2
2 files changed, 1 insertions, 44 deletions
diff --git a/spec/views/shared/nav/_sidebar.html.haml_spec.rb b/spec/views/shared/nav/_sidebar.html.haml_spec.rb
deleted file mode 100644
index 0eb945f5624..00000000000
--- a/spec/views/shared/nav/_sidebar.html.haml_spec.rb
+++ /dev/null
@@ -1,43 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'shared/nav/_sidebar.html.haml' do
- let_it_be(:project) { create(:project) }
-
- let(:context) { Sidebars::Projects::Context.new(current_user: nil, container: project) }
- let(:sidebar) { Sidebars::Projects::Panel.new(context) }
-
- before do
- assign(:project, project)
- assign(:sidebar, sidebar)
-
- allow(sidebar).to receive(:renderable_menus).and_return([])
- end
-
- context 'when sidebar has a scope menu' do
- it 'renders the scope menu' do
- render
-
- expect(rendered).to render_template('shared/nav/_scope_menu')
- end
- end
-
- context 'when sidebar does not have a scope menu' do
- let(:scope_menu_view_path) { 'shared/nav/' }
- let(:scope_menu_view_name) { 'scope_menu.html.haml' }
- let(:scope_menu_partial) { "#{scope_menu_view_path}_#{scope_menu_view_name}" }
- let(:content) { 'Custom test content' }
-
- context 'when sidebar has a custom scope menu partial defined' do
- it 'renders the custom partial' do
- allow(view).to receive(:scope_menu).and_return(nil)
- stub_template(scope_menu_partial => content)
-
- render
-
- expect(rendered).to have_text(content)
- end
- end
- end
-end
diff --git a/spec/views/shared/runners/_runner_details.html.haml_spec.rb b/spec/views/shared/runners/_runner_details.html.haml_spec.rb
index a597c719d87..0612d157ff4 100644
--- a/spec/views/shared/runners/_runner_details.html.haml_spec.rb
+++ b/spec/views/shared/runners/_runner_details.html.haml_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
-RSpec.describe 'shared/runners/_runner_details.html.haml', feature_category: :runner_fleet do
+RSpec.describe 'shared/runners/_runner_details.html.haml', feature_category: :fleet_visibility do
include PageLayoutHelper
let_it_be(:runner) do