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

gitaly.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7aca902fc613bb5a7e8524e1d57c7513d58179e3 (plain)
1
2
3
4
5
6
7
if Gitlab::GitalyClient.enabled?
  RSpec.configure do |config|
    config.before(:each) do
      allow(Gitlab::GitalyClient).to receive(:feature_enabled?).and_return(true)
    end
  end
end