summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/gitlab_markdown_helper_spec.rb
blob: 540618a560305b1ed8650a9915e7459a28475af8 (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
        Gitlab::MarkdownHelper.markup?("README.#{type}").should be_true
      end
    end

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

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

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