notification_view.ex: Make sure account isn’t empty

Related: https://git.pleroma.social/pleroma/pleroma/issues/1203
This commit is contained in:
Haelwenn (lanodan) Monnier 2019-10-04 06:47:36 +02:00 committed by Ariadne Conill
commit dbd78de176
2 changed files with 38 additions and 28 deletions

View file

@ -100,5 +100,11 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
NotificationView.render("index.json", %{notifications: [notification], for: followed})
assert [expected] == result
User.perform(:delete, follower)
notification = Notification |> Repo.one() |> Repo.preload(:activity)
assert [] ==
NotificationView.render("index.json", %{notifications: [notification], for: followed})
end
end