Merge branch 'bugfix/follower_count' into 'develop'
[akkoma] / test / web / activity_pub / utils_test.exs
index 6b9961d82d4a130ca39bd80cfd60c8d2f47aa2d5..758214e680c44560f67db810f7fa72fdaab627d1 100644 (file)
@@ -193,4 +193,16 @@ defmodule Pleroma.Web.ActivityPub.UtilsTest do
       assert Utils.fetch_ordered_collection("http://example.com/outbox", 5) == [0, 1]
     end
   end
+
+  test "make_json_ld_header/0" do
+    assert Utils.make_json_ld_header() == %{
+             "@context" => [
+               "https://www.w3.org/ns/activitystreams",
+               "http://localhost:4001/schemas/litepub-0.1.jsonld",
+               %{
+                 "@language" => "und"
+               }
+             ]
+           }
+  end
 end