summaryrefslogtreecommitdiff
path: root/test/web/activity_pub/utils_test.exs
diff options
context:
space:
mode:
authorEgor Kislitsyn <egor@kislitsyn.com>2019-04-08 18:48:10 +0700
committerEgor Kislitsyn <egor@kislitsyn.com>2019-04-08 18:48:10 +0700
commit9abf832b034bf3867272bd178d168c641129eff0 (patch)
treedecc2cc28908a79df003ad668fb06cb74fa97159 /test/web/activity_pub/utils_test.exs
parentc3d5c3513a3205313f0a2e28bb328ad5b48f2055 (diff)
parente19590c93f9adc5d743867b048aad9528810fc53 (diff)
downloadpleroma-9abf832b034bf3867272bd178d168c641129eff0.tar.gz
pleroma-9abf832b034bf3867272bd178d168c641129eff0.zip
Merge remote-tracking branch 'pleroma/develop' into use-jobs-in-webpush
Diffstat (limited to 'test/web/activity_pub/utils_test.exs')
-rw-r--r--test/web/activity_pub/utils_test.exs12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/web/activity_pub/utils_test.exs b/test/web/activity_pub/utils_test.exs
index 6b9961d82..758214e68 100644
--- a/test/web/activity_pub/utils_test.exs
+++ b/test/web/activity_pub/utils_test.exs
@@ -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