mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-05 08:31:36 +00:00
11 lines
224 B
Elixir
11 lines
224 B
Elixir
defmodule Pleroma.Web.ActivityPub.RelayTest do
|
|
use Pleroma.DataCase
|
|
|
|
alias Pleroma.Web.ActivityPub.Relay
|
|
|
|
test "gets an actor for the relay" do
|
|
user = Relay.get_actor()
|
|
|
|
assert user.ap_id =~ "/relay"
|
|
end
|
|
end
|