mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 14:16:05 +01: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
|