summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/badge/shared/metadata.rb
blob: 63c7ca5a9156309bc3f8ef5fd443e234a8e76c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
shared_examples 'badge metadata' do
  describe '#to_html' do
    let(:html) { Nokogiri::HTML.parse(metadata.to_html) }
    let(:a_href) { html.at('a') }

    it 'points to link' do
      expect(a_href[:href]).to eq metadata.link_url
    end

    it 'contains clickable image' do
      expect(a_href.children.first.name).to eq 'img'
    end
  end

  describe '#to_markdown' do
    subject { metadata.to_markdown }

    it { is_expected.to include metadata.image_url }
    it { is_expected.to include metadata.link_url }
  end

  describe '#to_asciidoc' do
    subject { metadata.to_asciidoc }

    it { is_expected.to include metadata.image_url }
    it { is_expected.to include metadata.link_url }
    it { is_expected.to include 'image:' }
    it { is_expected.to include 'link=' }
    it { is_expected.to include 'title=' }
  end
end