Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab_markdown_helper_spec.rb « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab613193f41de7f355312961204c7aafc1d8074f (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
require 'spec_helper'

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

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

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

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