diff options
author | rinpatch <rinpatch@sdf.org> | 2020-04-23 12:40:38 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-04-23 12:40:38 +0000 |
commit | 1b5f8d19eeccfe202c0377079caa6a1d6f3cacb5 (patch) | |
tree | 92e61042aeda2157a8ce09a98f47e1736b9296f3 /test/web/common_api/common_api_utils_test.exs | |
parent | 25eec6d72dae6e771b777aa6460acd600a17fe7d (diff) | |
parent | 7d38197894692306c940b55045b91d563e138284 (diff) | |
download | pleroma-1b5f8d19eeccfe202c0377079caa6a1d6f3cacb5.tar.gz |
Merge branch 'bugfix/repeating-announce' into 'develop'
CommonAPI: Don't make repeating announces possible
See merge request pleroma/pleroma!2418
Diffstat (limited to 'test/web/common_api/common_api_utils_test.exs')
-rw-r--r-- | test/web/common_api/common_api_utils_test.exs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/test/web/common_api/common_api_utils_test.exs b/test/web/common_api/common_api_utils_test.exs index b21445fe9..18a3b3b87 100644 --- a/test/web/common_api/common_api_utils_test.exs +++ b/test/web/common_api/common_api_utils_test.exs @@ -335,26 +335,6 @@ defmodule Pleroma.Web.CommonAPI.UtilsTest do end end - describe "get_by_id_or_ap_id/1" do - test "get activity by id" do - activity = insert(:note_activity) - %Pleroma.Activity{} = note = Utils.get_by_id_or_ap_id(activity.id) - assert note.id == activity.id - end - - test "get activity by ap_id" do - activity = insert(:note_activity) - %Pleroma.Activity{} = note = Utils.get_by_id_or_ap_id(activity.data["object"]) - assert note.id == activity.id - end - - test "get activity by object when type isn't `Create` " do - activity = insert(:like_activity) - %Pleroma.Activity{} = like = Utils.get_by_id_or_ap_id(activity.id) - assert like.data["object"] == activity.data["object"] - end - end - describe "to_master_date/1" do test "removes microseconds from date (NaiveDateTime)" do assert Utils.to_masto_date(~N[2015-01-23 23:50:07.123]) == "2015-01-23T23:50:07.000Z" |