31 lines
952 B
Ruby
31 lines
952 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'fast_spec_helper'
|
|
|
|
RSpec.describe Sidebars::MenuItem do
|
|
let(:title) { 'foo' }
|
|
let(:html_options) { {} }
|
|
let(:menu_item) { described_class.new(title: title, active_routes: {}, link: '', container_html_options: html_options) }
|
|
|
|
it 'includes by default aria-label attribute set to the title' do
|
|
expect(menu_item.container_html_options).to eq({ aria: { label: title } })
|
|
end
|
|
|
|
context 'when aria-label is overridde during initialization' do
|
|
let(:html_options) { { aria: { label: 'bar' } } }
|
|
|
|
it 'sets the aria-label to the new attribute' do
|
|
expect(menu_item.container_html_options).to eq html_options
|
|
end
|
|
end
|
|
|
|
describe "#serialize_for_super_sidebar" do
|
|
let(:html_options) { { class: 'custom-class' } }
|
|
|
|
subject { menu_item.serialize_for_super_sidebar }
|
|
|
|
it 'includes custom CSS classes' do
|
|
expect(subject[:link_classes]).to be('custom-class')
|
|
end
|
|
end
|
|
end
|