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/helpers/application_helper_spec.rb')
-rw-r--r--spec/helpers/application_helper_spec.rb24
1 files changed, 19 insertions, 5 deletions
diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb
index 2445689bf9f..3d9996616d8 100644
--- a/spec/helpers/application_helper_spec.rb
+++ b/spec/helpers/application_helper_spec.rb
@@ -701,17 +701,31 @@ RSpec.describe ApplicationHelper do
end
describe 'with-header' do
- context 'when current_user' do
+ context 'when @with_header is falsey' do
before do
- allow(helper).to receive(:current_user).and_return(user)
+ helper.instance_variable_set(:@with_header, nil)
+ end
+
+ context 'when current_user' do
+ before do
+ allow(helper).to receive(:current_user).and_return(user)
+ end
+
+ it { is_expected.not_to include('with-header') }
end
- it { is_expected.not_to include('with-header') }
+ context 'when no current_user' do
+ before do
+ allow(helper).to receive(:current_user).and_return(nil)
+ end
+
+ it { is_expected.to include('with-header') }
+ end
end
- context 'when no current_user' do
+ context 'when @with_header is true' do
before do
- allow(helper).to receive(:current_user).and_return(nil)
+ helper.instance_variable_set(:@with_header, true)
end
it { is_expected.to include('with-header') }