debian-mirror-gitlab/spec/lib/gitlab/ci/status/build/common_spec.rb
2018-05-09 12:01:36 +05:30

47 lines
1 KiB
Ruby

require 'spec_helper'
describe Gitlab::Ci::Status::Build::Common do
let(:user) { create(:user) }
let(:build) { create(:ci_build) }
let(:project) { build.project }
subject do
Gitlab::Ci::Status::Core
.new(build, 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 build' do
before do
project.add_developer(user)
end
it { is_expected.to have_details }
end
context 'when user does not have access to read build' do
before do
project.update(public_builds: false)
end
it { is_expected.not_to have_details }
end
end
describe '#details_path' do
it 'links to the build details page' do
expect(subject.details_path).to include "jobs/#{build.id}"
end
end
describe '#illustration' do
it 'provides a fallback empty state illustration' do
expect(subject.illustration).not_to be_empty
end
end
end