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

syntax_highlight_filter_spec.rb « markdown « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a490673728378dcac545b4e14532d2228753b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'spec_helper'

module Gitlab::Markdown
  describe SyntaxHighlightFilter do
    include FilterSpecHelper

    it 'highlights valid code blocks' do
      result = filter('<pre><code>def fun end</code>')
      expect(result.to_html).to eq("<pre class=\"code highlight js-syntax-highlight plaintext\"><code>def fun end</code></pre>\n")
    end

    it 'passes through invalid code blocks' do
      allow_any_instance_of(SyntaxHighlightFilter).to receive(:block_code).and_raise(StandardError)

      result = filter('<pre><code>This is a test</code></pre>')
      expect(result.to_html).to eq('<pre>This is a test</pre>')
    end
  end
end