Add a custom storage config instead of overwriting

Otherwise the ApplicationSetting that is currently stored would be
invalid as it specifies a storage that is not configured
This commit is contained in:
Bob Van Landuyt 2018-06-06 15:21:13 +02:00
parent e6568d806d
commit 51a9f71118
1 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,9 @@ describe API::Settings, 'Settings' do
context "custom repository storage type set in the config" do
before do
storages = { 'custom' => 'tmp/tests/custom_repositories' }
# Add a possible storage to the config
storages = Gitlab.config.repositories.storages
.merge({ 'custom' => 'tmp/tests/custom_repositories' })
allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
end