summaryrefslogtreecommitdiffstats
path: root/tests/users/views/test_activitypub.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/users/views/test_activitypub.py')
-rw-r--r--tests/users/views/test_activitypub.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/users/views/test_activitypub.py b/tests/users/views/test_activitypub.py
index c6e7faf..c15e232 100644
--- a/tests/users/views/test_activitypub.py
+++ b/tests/users/views/test_activitypub.py
@@ -14,6 +14,7 @@ def test_webfinger_actor(client, identity):
# Fetch their actor
data = client.get("/@test@example.com/", HTTP_ACCEPT="application/ld+json").json()
assert data["id"] == "https://example.com/@test@example.com/"
+ assert data["endpoints"]["sharedInbox"] == "https://example.com/inbox/"
@pytest.mark.django_db
@@ -31,6 +32,7 @@ def test_webfinger_system_actor(client):
data = client.get("/actor/", HTTP_ACCEPT="application/ld+json").json()
assert data["id"] == "https://example.com/actor/"
assert data["inbox"] == "https://example.com/actor/inbox/"
+ assert data["endpoints"]["sharedInbox"] == "https://example.com/inbox/"
@pytest.mark.django_db