summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Mazetto <brodock@gmail.com>2017-06-21 23:21:34 +0200
committerGabriel Mazetto <brodock@gmail.com>2017-06-24 03:46:50 +0200
commitb6118afd889fd5f04f7cd16afa413d132236ca44 (patch)
tree68ce2a9d1397afe9f31fd4f25e0a799bb298de17
parent6b86ce75cf5b716370611f2bccea2b4590d7ce34 (diff)
downloadgitlab-ce-backport-destroy-service-spec-fixes.tar.gz
Fixed DestroyService spec to actually test if removal was successfulbackport-destroy-service-spec-fixes
-rw-r--r--spec/services/projects/destroy_service_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/services/projects/destroy_service_spec.rb b/spec/services/projects/destroy_service_spec.rb
index 0d6dd28e332..697dc18feb0 100644
--- a/spec/services/projects/destroy_service_spec.rb
+++ b/spec/services/projects/destroy_service_spec.rb
@@ -15,8 +15,9 @@ describe Projects::DestroyService, services: true do
shared_examples 'deleting the project' do
it 'deletes the project' do
expect(Project.unscoped.all).not_to include(project)
- expect(Dir.exist?(path)).to be_falsey
- expect(Dir.exist?(remove_path)).to be_falsey
+
+ expect(project.gitlab_shell.exists?(project.repository_storage_path, path + '.git')).to be_falsey
+ expect(project.gitlab_shell.exists?(project.repository_storage_path, remove_path + '.git')).to be_falsey
end
end