29 lines
944 B
Ruby
29 lines
944 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'projects/issues/_related_branches' do
|
|
include Devise::Test::ControllerHelpers
|
|
|
|
let(:pipeline) { build(:ci_pipeline, :success) }
|
|
let(:status) { pipeline.detailed_status(build(:user)) }
|
|
|
|
before do
|
|
assign(:related_branches, [
|
|
{ name: 'other', link: 'link-to-other', pipeline_status: nil },
|
|
{ name: 'feature', link: 'link-to-feature', pipeline_status: status }
|
|
])
|
|
|
|
render
|
|
end
|
|
|
|
it 'shows the related branches with their build status', :aggregate_failures do
|
|
expect(rendered).to have_text('feature')
|
|
expect(rendered).to have_text('other')
|
|
expect(rendered).to have_link(href: 'link-to-feature')
|
|
expect(rendered).to have_link(href: 'link-to-other')
|
|
expect(rendered).to have_css('.related-branch-ci-status')
|
|
expect(rendered).to have_css('.ci-status-icon')
|
|
expect(rendered).to have_css('.related-branch-info')
|
|
end
|
|
end
|