summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/markup_helper_spec.rb
blob: 09e518ff989fd17f9c60564ae6224a979a9376b9 (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
32
33
34
35
36
37
38
39
40
require 'spec_helper'

describe Gitlab::MarkupHelper do
  describe '#markup?' do
    %w(textile rdoc org creole wiki
       mediawiki rst adoc ad asciidoc mdown md markdown).each do |type|
      it "returns true for #{type} files" do
        expect(described_class.markup?("README.#{type}")).to be_truthy
      end
    end

    it 'returns false when given a non-markup filename' do
      expect(described_class.markup?('README.rb')).not_to be_truthy
    end
  end

  describe '#gitlab_markdown?' do
    %w(mdown mkd mkdn md markdown).each do |type|
      it "returns true for #{type} files" do
        expect(described_class.gitlab_markdown?("README.#{type}")).to be_truthy
      end
    end

    it 'returns false when given a non-markdown filename' do
      expect(described_class.gitlab_markdown?('README.rb')).not_to be_truthy
    end
  end

  describe '#asciidoc?' do
    %w(adoc ad asciidoc ADOC).each do |type|
      it "returns true for #{type} files" do
        expect(described_class.asciidoc?("README.#{type}")).to be_truthy
      end
    end

    it 'returns false when given a non-asciidoc filename' do
      expect(described_class.asciidoc?('README.rb')).not_to be_truthy
    end
  end
end