mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-02 06:34:13 +00:00
12 lines
224 B
Elixir
12 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
|