debian-mirror-gitlab/spec/views/layouts/snippets.html.haml_spec.rb
2023-04-23 21:23:45 +05:30

32 lines
774 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'layouts/snippets', feature_category: :source_code_management do
before do
allow(view).to receive(:current_user).and_return(user)
allow(view).to receive(:current_user_mode).and_return(Gitlab::Auth::CurrentUserMode.new(user))
end
describe 'sidebar' do
context 'when signed in' do
let(:user) { build_stubbed(:user) }
it 'renders the "Your work" sidebar' do
render
expect(rendered).to have_css('aside.nav-sidebar[aria-label="Your work"]')
end
end
context 'when not signed in' do
let(:user) { nil }
it 'renders no sidebar' do
render
expect(rendered).not_to have_css('aside.nav-sidebar')
end
end
end
end