1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Sidebars::Groups::Menus::ScopeMenu, feature_category: :navigation do
let(:group) { build(:group) }
let(:user) { group.owner }
let(:context) { Sidebars::Groups::Context.new(current_user: user, container: group) }
let(:menu) { described_class.new(context) }
it_behaves_like 'serializable as super_sidebar_menu_args' do
let(:extra_attrs) do
{
super_sidebar_parent: ::Sidebars::StaticMenu,
title: group.name,
avatar: group.avatar_url,
entity_id: group.id,
item_id: :group_overview
}
end
end
end
|