debian-mirror-gitlab/spec/lib/gitlab/ci/status/pipeline/common_spec.rb

39 lines
903 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
require 'spec_helper'
describe Gitlab::Ci::Status::Pipeline::Common do
let(:user) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project, :private) }
2017-08-17 22:00:37 +05:30
let(:pipeline) { create(:ci_pipeline, project: project) }
subject do
Gitlab::Ci::Status::Core
.new(pipeline, user)
.extend(described_class)
end
describe '#has_action?' do
it { is_expected.not_to have_action }
end
describe '#has_details?' do
context 'when user has access to read pipeline' do
2017-09-10 17:25:29 +05:30
before do
project.team << [user, :developer]
end
2017-08-17 22:00:37 +05:30
it { is_expected.to have_details }
end
context 'when user does not have access to read pipeline' do
it { is_expected.not_to have_details }
end
end
describe '#details_path' do
it 'links to the pipeline details page' do
expect(subject.details_path)
.to include "pipelines/#{pipeline.id}"
end
end
end