diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-06-16 18:25:58 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-06-16 18:25:58 +0000 |
commit | a5f4bba440d7f9ea47046a0a561d49adf0a1e6d4 (patch) | |
tree | fb69158581673816a8cd895f9d352dcb3c678b1e /spec/models/note_spec.rb | |
parent | d16b2e8639e99961de6ddc93909f3bb5c1445ba1 (diff) | |
download | gitlab-ce-a5f4bba440d7f9ea47046a0a561d49adf0a1e6d4.tar.gz |
Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42
Diffstat (limited to 'spec/models/note_spec.rb')
-rw-r--r-- | spec/models/note_spec.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/models/note_spec.rb b/spec/models/note_spec.rb index 4eabc266b40..d9f566f9383 100644 --- a/spec/models/note_spec.rb +++ b/spec/models/note_spec.rb @@ -1522,4 +1522,16 @@ RSpec.describe Note do it { is_expected.to be_truthy } end end + + describe '#attachment' do + it 'is cleaned up correctly when project is destroyed' do + note = create(:note_on_issue, :with_attachment) + + attachment = note.attachment + + note.project.destroy! + + expect(attachment).not_to be_exist + end + end end |