Merge branch 'backport-destroy-service-spec-fixes' into 'master'

Backport from EE: Fixed DestroyService spec to actually test if removal was successful

See merge request !12437
This commit is contained in:
Douwe Maan 2017-06-26 15:27:15 +00:00
commit e45843302a
1 changed files with 3 additions and 2 deletions

View File

@ -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