tests that likes are deleted when their photo is deleted

This commit is contained in:
Brenda Wallace
2019-07-12 15:08:02 +12:00
committed by always-be-closing[bot]
parent b654fd483b
commit 2879979db4

View File

@@ -48,6 +48,12 @@ describe 'like' do
expect(Like.all).not_to include like
end
it 'destroys like if post no longer exists' do
like = Like.create(member: member, likeable: post)
post.destroy
expect(Like.all).not_to include like
end
it 'destroys like if member no longer exists' do
like = Like.create(member: member, likeable: post)
member.destroy