Commit 6e55a60d authored by Doug Stull's avatar Doug Stull

Merge branch...

Merge branch 'jejacks0n/experiment/new_project_sast_enabled_add_unchecked_free_variant_method' into 'master'

Adds new unchecked free indicator variant method

See merge request gitlab-org/gitlab!77703
parents 3d1d87de 0fcc2387
......@@ -15,4 +15,7 @@ class NewProjectSastEnabledExperiment < ApplicationExperiment # rubocop:disable
def unchecked_candidate_behavior
end
def unchecked_free_indicator_behavior
end
end
......@@ -4,7 +4,12 @@ require 'spec_helper'
RSpec.describe NewProjectSastEnabledExperiment do
it "defines the expected behaviors and variants" do
expect(subject.behaviors.keys).to match_array(%w[control candidate free_indicator unchecked_candidate])
expect(subject.variant_names).to match_array([
:candidate,
:free_indicator,
:unchecked_candidate,
:unchecked_free_indicator
])
end
it "publishes to the database" do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment