Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_types_spec.rb « experimentation « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b118d76fa4f6f4f68b45596ca2ab5b000459a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::Experimentation::GroupTypes do
  it 'defines a GROUP_CONTROL constant' do
    expect(described_class.const_defined?(:GROUP_CONTROL)).to be_truthy
  end

  it 'defines a GROUP_EXPERIMENTAL constant' do
    expect(described_class.const_defined?(:GROUP_EXPERIMENTAL)).to be_truthy
  end
end