Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-04-16 18:21:40 +0300
committerStan Hu <stanhu@gmail.com>2017-04-16 18:36:33 +0300
commit60eee739f040e997d6dac3f4e21ef90daa6c7f30 (patch)
treead09acc17c462ffeb1337d819dbaf7ba50d2a32e /spec/services
parent309bab431075eabfb7a01300f946ce9eb5b6fb98 (diff)
Hard delete users' associated records deleted from AbuseReports
In the case of spammers, we really want a hard delete to avoid retaining spam. Closes #31021
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/users/destroy_service_spec.rb6
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