diff options
author | Stan Hu <stanhu@gmail.com> | 2017-04-16 08:21:40 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2017-04-16 08:36:33 -0700 |
commit | 60eee739f040e997d6dac3f4e21ef90daa6c7f30 (patch) | |
tree | ad09acc17c462ffeb1337d819dbaf7ba50d2a32e /spec/services/users | |
parent | 309bab431075eabfb7a01300f946ce9eb5b6fb98 (diff) | |
download | gitlab-ce-60eee739f040e997d6dac3f4e21ef90daa6c7f30.tar.gz |
Hard delete users' associated records deleted from AbuseReportssh-add-option-to-hard-delete
In the case of spammers, we really want a hard delete to avoid retaining spam.
Closes #31021
Diffstat (limited to 'spec/services/users')
-rw-r--r-- | spec/services/users/destroy_service_spec.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/services/users/destroy_service_spec.rb b/spec/services/users/destroy_service_spec.rb index 43c18992d1a..4bc30018ebd 100644 --- a/spec/services/users/destroy_service_spec.rb +++ b/spec/services/users/destroy_service_spec.rb @@ -152,6 +152,12 @@ describe Users::DestroyService, services: true do service.execute(user) end + + it 'does not run `MigrateToGhostUser` if hard_delete option is given' do + expect_any_instance_of(Users::MigrateToGhostUserService).not_to receive(:execute) + + service.execute(user, hard_delete: true) + end end end end |