6b3966407b
Adds rspec view tests that expect the nav sidebar to have a class that will cause the nav sidebar to be rendered collapsed with or without js. Tests the nav sidebar on the admin, group, instance statistics, user profile and project sidebars.
13 lines
247 B
Ruby
13 lines
247 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'layouts/nav/sidebar/_profile' do
|
|
let(:user) { create(:user) }
|
|
|
|
before do
|
|
allow(view).to receive(:current_user).and_return(user)
|
|
end
|
|
|
|
it_behaves_like 'has nav sidebar'
|
|
end
|