gitlab-org--gitlab-foss/spec/views/projects/issues/_related_branches.html.haml...

22 lines
579 B
Ruby
Raw Normal View History

require 'spec_helper'
describe 'projects/issues/_related_branches' do
include Devise::TestHelpers
let(:project) { create(:project) }
let(:branch) { project.repository.find_branch('feature') }
let!(:pipeline) { create(:ci_pipeline, project: project, sha: branch.target.id, ref: 'feature') }
before do
assign(:project, project)
assign(:related_branches, ['feature'])
render
end
it 'shows the related branches with their build status' do
expect(rendered).to match('feature')
expect(rendered).to have_css('.related-branch-ci-status')
end
end