summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/experimentation/group_types_spec.rb
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