debian-mirror-gitlab/spec/support/stored_repositories.rb

18 lines
453 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
RSpec.configure do |config|
config.before(:each, :repository) do
TestEnv.clean_test_path
end
2017-09-10 17:25:29 +05:30
config.before(:all, :broken_storage) do
FileUtils.rm_rf Gitlab.config.repositories.storages.broken['path']
end
config.before(:each, :broken_storage) do
allow(Gitlab::GitalyClient).to receive(:call) do
raise GRPC::Unavailable.new('Gitaly broken in this spec')
end
Gitlab::Git::Storage::CircuitBreaker.reset_all!
end
2017-08-17 22:00:37 +05:30
end