mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 22:28:26 +02:00
Audio federation
This commit is contained in:
parent
6992c567fb
commit
e49a460203
85 changed files with 2598 additions and 1204 deletions
|
@ -148,10 +148,7 @@ def test_creating_actor_from_user(factories, settings):
|
|||
)
|
||||
)
|
||||
assert actor.shared_inbox_url == federation_utils.full_url(
|
||||
reverse(
|
||||
"federation:actors-inbox",
|
||||
kwargs={"preferred_username": actor.preferred_username},
|
||||
)
|
||||
reverse("federation:shared-inbox")
|
||||
)
|
||||
assert actor.inbox_url == federation_utils.full_url(
|
||||
reverse(
|
||||
|
@ -165,6 +162,18 @@ def test_creating_actor_from_user(factories, settings):
|
|||
kwargs={"preferred_username": actor.preferred_username},
|
||||
)
|
||||
)
|
||||
assert actor.followers_url == federation_utils.full_url(
|
||||
reverse(
|
||||
"federation:actors-followers",
|
||||
kwargs={"preferred_username": actor.preferred_username},
|
||||
)
|
||||
)
|
||||
assert actor.following_url == federation_utils.full_url(
|
||||
reverse(
|
||||
"federation:actors-following",
|
||||
kwargs={"preferred_username": actor.preferred_username},
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
def test_get_channels_groups(factories):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue