summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/group/factory_spec.rb
blob: be76a1d5a65efa93f8192f54d626d206966c5c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Ci::Status::Group::Factory do
  it 'inherits from the core factory' do
    expect(described_class)
      .to be < Gitlab::Ci::Status::Factory
  end

  it 'exposes group helpers' do
    expect(described_class.common_helpers)
      .to eq Gitlab::Ci::Status::Group::Common
  end
end