diff options
author | Sergey Suprunenko <suprunenko.s@gmail.com> | 2020-08-17 00:07:23 +0200 |
---|---|---|
committer | Sergey Suprunenko <suprunenko.s@gmail.com> | 2020-08-17 00:11:33 +0200 |
commit | 25c69e271a3ea6687805e0bd0d4b902cda06e364 (patch) | |
tree | 741282e22dfcb5cdcf1603fd1718db02574d2384 /test | |
parent | 0865f36965f1583085af3a424dbbc89de724fd33 (diff) | |
download | pleroma-25c69e271a3ea6687805e0bd0d4b902cda06e364.tar.gz |
Make notifications about new statuses from muted threads read
Diffstat (limited to 'test')
-rw-r--r-- | test/notification_test.exs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/notification_test.exs b/test/notification_test.exs index 93f4761da..a09b08675 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -246,7 +246,10 @@ defmodule Pleroma.NotificationTest do in_reply_to_status_id: activity.id }) - assert Notification.create_notification(activity, muter) + notification = Notification.create_notification(activity, muter) + + assert notification.id + assert notification.seen end test "it disables notifications from strangers" do @@ -320,6 +323,7 @@ defmodule Pleroma.NotificationTest do {:ok, [notification]} = Notification.create_notifications(status) assert notification + refute notification.seen end test "it creates notifications when someone likes user's status with a filtered word" do @@ -333,6 +337,7 @@ defmodule Pleroma.NotificationTest do {:ok, [notification]} = Notification.create_notifications(activity_two) assert notification + refute notification.seen end end |