summaryrefslogtreecommitdiff
path: root/spec/support/gitaly.rb
blob: 2bf159002a074784adc44d5733f8443254f6d816 (plain)
1
2
3
4
5
6
7
8
if Gitlab::GitalyClient.enabled?
  RSpec.configure do |config|
    config.before(:each) do |example|
      next if example.metadata[:skip_gitaly_mock]
      allow(Gitlab::GitalyClient).to receive(:feature_enabled?).and_return(true)
    end
  end
end