summaryrefslogtreecommitdiff
path: root/spec/views/ci/lints/show.html.haml_spec.rb
blob: 3a65a86cd88c53812c26b1c4c3dd5eab5208c4d0 (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
require 'spec_helper'

describe 'ci/lints/show' do
  include Devise::TestHelpers

  before do
    assign(:status, true)
    assign(:stages, %w[test])
    assign(:builds, builds)
  end

  context 'when builds attrbiutes contain HTML nodes' do
    let(:builds) do
      [ { name: 'rspec', stage: 'test', commands: '<h1>rspec</h1>' } ]
    end

    it 'does not render HTML elements' do
      render

      expect(rendered).not_to have_css('h1', text: 'rspec')
    end
  end

  context 'when builds attributes do not contain HTML nodes' do
    let(:builds) do
      [ { name: 'rspec', stage: 'test', commands: 'rspec' } ]
    end

    it 'shows configuration in the table' do
      render

      expect(rendered).to have_css('td pre', text: 'rspec')
    end
  end
end