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:
-rw-r--r--spec/spec_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 69589c9aa33..a0501590fab 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -122,6 +122,7 @@ RSpec.configure do |config|
config.before do |example|
# Enable all features by default for testing
allow(Feature).to receive(:enabled?) { true }
+ allow(Feature).to receive(:enabled?).with('gitaly_catfile-cache').and_return(false)
enabled = example.metadata[:enable_rugged].present?