diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-04-21 13:52:03 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-04-21 13:52:03 +0200 |
commit | 536892b8ae7788525e9d65481df693afe6a8bfc4 (patch) | |
tree | 601261c5ef16225420743f32ae2ec4ce40ceb098 /spec/lib | |
parent | b1d4f21db0d413c887978ff69aa46b3bc8ea1f3d (diff) | |
parent | 0b36e3419d4c4ce175f9db266ef5b3a49a9b3974 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'spec/lib')
-rw-r--r-- | spec/lib/activitypub/activity/delete_spec.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/lib/activitypub/activity/delete_spec.rb b/spec/lib/activitypub/activity/delete_spec.rb index 37b93ecf7..9dfb8a61b 100644 --- a/spec/lib/activitypub/activity/delete_spec.rb +++ b/spec/lib/activitypub/activity/delete_spec.rb @@ -49,4 +49,24 @@ RSpec.describe ActivityPub::Activity::Delete do end end end + + context 'when the status has been reported' do + describe '#perform' do + subject { described_class.new(json, sender) } + let!(:reporter) { Fabricate(:account) } + + before do + reporter.reports.create!(target_account: status.account, status_ids: [status.id], forwarded: false) + subject.perform + end + + it 'marks the status as deleted' do + expect(Status.find_by(id: status.id)).to be_nil + end + + it 'actually keeps a copy for inspection' do + expect(Status.with_discarded.find_by(id: status.id)).to_not be_nil + end + end + end end |