summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/group/common_spec.rb
blob: 8a519e925a1f6f7faf5f44cad7267ce11b89e134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'spec_helper'

describe Gitlab::Ci::Status::Group::Common do
  subject do
    Class.new(Gitlab::Ci::Status::Group::Core)
      .new(nil, nil).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
end