debian-mirror-gitlab/spec/support/stored_repositories.rb
2019-10-12 21:52:04 +05:30

10 lines
237 B
Ruby

# frozen_string_literal: true
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