summaryrefslogtreecommitdiff
path: root/spec/lib/constraints
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 11:18:50 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 11:18:50 +0000
commit8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781 (patch)
treea77e7fe7a93de11213032ed4ab1f33a3db51b738 /spec/lib/constraints
parent00b35af3db1abfe813a778f643dad221aad51fca (diff)
downloadgitlab-ce-8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781.tar.gz
Add latest changes from gitlab-org/gitlab@13-1-stable-ee
Diffstat (limited to 'spec/lib/constraints')
-rw-r--r--spec/lib/constraints/feature_constrainer_spec.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/spec/lib/constraints/feature_constrainer_spec.rb b/spec/lib/constraints/feature_constrainer_spec.rb
index 0739da801a7..7665d5b3547 100644
--- a/spec/lib/constraints/feature_constrainer_spec.rb
+++ b/spec/lib/constraints/feature_constrainer_spec.rb
@@ -5,9 +5,12 @@ require 'spec_helper'
describe Constraints::FeatureConstrainer do
describe '#matches' do
it 'calls Feature.enabled? with the correct arguments' do
- expect(Feature).to receive(:enabled?).with(:feature_name, "an object", default_enabled: true)
+ gate = stub_feature_flag_gate("an object")
- described_class.new(:feature_name, "an object", default_enabled: true).matches?(double('request'))
+ expect(Feature).to receive(:enabled?)
+ .with(:feature_name, gate, default_enabled: true)
+
+ described_class.new(:feature_name, gate, default_enabled: true).matches?(double('request'))
end
end
end