gitlab-org--gitlab-foss/spec/lib/gitlab/ci/status/pipeline/common_spec.rb

31 lines
658 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Gitlab::Ci::Status::Pipeline::Common do
let(:user) { create(:user) }
let(:project) { create(:empty_project) }
let(:pipeline) { create(:ci_pipeline, project: project) }
subject do
Class.new(Gitlab::Ci::Status::Core)
.new(pipeline, user)
.extend(described_class)
end
before do
project.team << [user, :developer]
end
it 'does not have action' do
expect(subject).not_to have_action
end
it 'has details' do
expect(subject).to have_details
end
it 'links to the pipeline details page' do
expect(subject.details_path)
.to include "pipelines/#{pipeline.id}"
end
end