summaryrefslogtreecommitdiff
path: root/spec/helpers/nav_helper_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/helpers/nav_helper_spec.rb')
-rw-r--r--spec/helpers/nav_helper_spec.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/spec/helpers/nav_helper_spec.rb b/spec/helpers/nav_helper_spec.rb
index e840c927d59..cfd677f8cbd 100644
--- a/spec/helpers/nav_helper_spec.rb
+++ b/spec/helpers/nav_helper_spec.rb
@@ -1,12 +1,12 @@
-require 'spec_helper'
+require "spec_helper"
describe NavHelper do
- describe '#header_links' do
+ describe "#header_links" do
before do
allow(helper).to receive(:session) { {} }
end
- context 'when the user is logged in' do
+ context "when the user is logged in" do
let(:user) { build(:user) }
before do
@@ -14,28 +14,28 @@ describe NavHelper do
allow(helper).to receive(:can?) { true }
end
- it 'has all the expected links by default' do
+ it "has all the expected links by default" do
menu_items = [:user_dropdown, :search, :issues, :merge_requests, :todos]
expect(helper.header_links).to contain_exactly(*menu_items)
end
- it 'contains the impersonation link while impersonating' do
- expect(helper).to receive(:session) { { impersonator_id: 1 } }
+ it "contains the impersonation link while impersonating" do
+ expect(helper).to receive(:session) { {impersonator_id: 1} }
expect(helper.header_links).to include(:admin_impersonation)
end
- context 'when the user cannot read cross project' do
+ context "when the user cannot read cross project" do
before do
allow(helper).to receive(:can?).with(user, :read_cross_project) { false }
end
- it 'does not contain cross project elements when the user cannot read cross project' do
+ it "does not contain cross project elements when the user cannot read cross project" do
expect(helper.header_links).not_to include(:issues, :merge_requests, :todos, :search)
end
- it 'shows the search box when the user cannot read cross project and he is visiting a project' do
+ it "shows the search box when the user cannot read cross project and he is visiting a project" do
helper.instance_variable_set(:@project, create(:project))
expect(helper.header_links).to include(:search)
@@ -43,7 +43,7 @@ describe NavHelper do
end
end
- it 'returns only the sign in and search when the user is not logged in' do
+ it "returns only the sign in and search when the user is not logged in" do
allow(helper).to receive(:current_user).and_return(nil)
allow(helper).to receive(:can?).with(nil, :read_cross_project) { true }