BigW Consortium Gitlab

factory_spec.rb 321 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
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