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: 599ad08f7062d7bb9e5ef5a1172b799b611ec35b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require '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