summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/experimentation/group_types_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/gitlab/experimentation/group_types_spec.rb')
-rw-r--r--spec/lib/gitlab/experimentation/group_types_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/lib/gitlab/experimentation/group_types_spec.rb b/spec/lib/gitlab/experimentation/group_types_spec.rb
new file mode 100644
index 00000000000..599ad08f706
--- /dev/null
+++ b/spec/lib/gitlab/experimentation/group_types_spec.rb
@@ -0,0 +1,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