X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=test%2Fnotification_test.exs;h=1c60f6866a1296537e2c7d816bbe328155611082;hb=509c81e4b10bd8ba6d3a93889cd6fbbbfbcbab21;hp=04bf5b41aaf62883934167a3cca48978c7b658c8;hpb=d536a00d42e2d6747961755fd28f3dd1f646148e;p=akkoma diff --git a/test/notification_test.exs b/test/notification_test.exs index 04bf5b41a..1c60f6866 100644 --- a/test/notification_test.exs +++ b/test/notification_test.exs @@ -1,5 +1,5 @@ # Pleroma: A lightweight social networking server -# Copyright © 2017-2019 Pleroma Authors +# Copyright © 2017-2020 Pleroma Authors # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.NotificationTest do @@ -649,6 +649,13 @@ defmodule Pleroma.NotificationTest do "object" => remote_user.ap_id } + remote_user_url = remote_user.ap_id + + Tesla.Mock.mock(fn + %{method: :get, url: ^remote_user_url} -> + %Tesla.Env{status: 404, body: ""} + end) + {:ok, _delete_activity} = Transmogrifier.handle_incoming(delete_user_message) ObanHelpers.perform_all()