X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fnotification_test.exs;h=c9b35209720f027b0c1c884f01ad29c4546eae0c;hb=ba5e8a644463a19b863e862def80adb6a5a1060b;hp=04bf5b41aaf62883934167a3cca48978c7b658c8;hpb=4f004ab92e6d824140e1f87155c3f91a6eedcb09;p=akkoma diff --git a/test/notification_test.exs b/test/notification_test.exs index 04bf5b41a..c9b352097 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -43,6 +43,9 @@ defmodule Pleroma.NotificationTest do assert notified_ids == [other_user.id, third_user.id] assert notification.activity_id == activity.id assert other_notification.activity_id == activity.id + + assert [%Pleroma.Marker{unread_count: 2}] = + Pleroma.Marker.get_markers(other_user, ["notifications"]) end test "it creates a notification for subscribed users" do @@ -334,6 +337,13 @@ defmodule Pleroma.NotificationTest do assert n1.seen == true assert n2.seen == true assert n3.seen == false + + assert %Pleroma.Marker{unread_count: 1} = + Pleroma.Repo.get_by( + Pleroma.Marker, + user_id: other_user.id, + timeline: "notifications" + ) end end