summaryrefslogtreecommitdiff
path: root/spec/models/concerns/sidebars/container_with_html_options_spec.rb
blob: cc83fc841138ac30aea8f0dca2f1b3b551b2a6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Sidebars::ContainerWithHtmlOptions do
  subject do
    Class.new do
      include Sidebars::ContainerWithHtmlOptions

      def title
        'Foo'
      end
    end.new
  end

  describe '#container_html_options' do
    it 'includes by default aria-label attribute' do
      expect(subject.container_html_options).to eq(aria: { label: 'Foo' })
    end
  end
end