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

stored_repositories.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55212355daadac143ecef72daf3ccb1add21650b (plain)
1
2
3
4
5
6
7
RSpec.configure do |config|
  config.before(:each, :broken_storage) do
    allow(Gitlab::GitalyClient).to receive(:call) do
      raise GRPC::Unavailable.new('Gitaly broken in this spec')
    end
  end
end