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

_stage.html.haml_spec.rb « pipelines « projects « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb7f7ca4a1a297b8d4dc73c09d31f4b5ef35c913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe 'projects/pipelines/_stage', :view do
  let(:project) { create(:project) }
  let(:pipeline) { create(:ci_pipeline, project: project) }
  let(:stage) { build(:ci_stage, pipeline: pipeline) }

  before do
    assign :stage, stage

    create(:ci_build, name: 'test:build',
                      stage: stage.name,
                      pipeline: pipeline)
  end

  it 'shows the builds in the stage' do
    render

    expect(rendered).to have_text 'test:build'
  end
end