2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::Ci::Status::Group::Common do
|
|
|
|
subject do
|
|
|
|
Gitlab::Ci::Status::Core.new(double, double)
|
|
|
|
.extend(described_class)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not have action' do
|
|
|
|
expect(subject).not_to have_action
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has details' do
|
|
|
|
expect(subject).not_to have_details
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has no details_path' do
|
|
|
|
expect(subject.details_path).to be_falsy
|
|
|
|
end
|
|
|
|
end
|