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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-05-11 03:08:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-05-11 03:08:02 +0300
commitcb2494484e33a0d3c750625908e8b4dda69ab7b4 (patch)
treed3a4748bdb44b5ad7c1952c508dbb18230c45a7b /spec/experiments
parent8cd9a013792172f8d64eba8f327e2dadd71efffb (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/experiments')
-rw-r--r--spec/experiments/application_experiment_spec.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/spec/experiments/application_experiment_spec.rb b/spec/experiments/application_experiment_spec.rb
index 15b45099a06..13c12afc15d 100644
--- a/spec/experiments/application_experiment_spec.rb
+++ b/spec/experiments/application_experiment_spec.rb
@@ -8,13 +8,9 @@ RSpec.describe ApplicationExperiment, :experiment do
let(:context) { {} }
let(:feature_definition) { { name: 'namespaced_stub', type: 'experiment', default_enabled: false } }
- around do |example|
- Feature::Definition.definitions[:namespaced_stub] = Feature::Definition.new('namespaced_stub.yml', feature_definition)
- example.run
- Feature::Definition.definitions.delete(:namespaced_stub)
- end
-
before do
+ stub_feature_flag_definition(:namespaced_stub, feature_definition)
+
allow(application_experiment).to receive(:enabled?).and_return(true)
end