Test Relay, switch to runtime configuration.
[akkoma] / test / web / activity_pub / relay_test.exs
1 defmodule Pleroma.Web.ActivityPub.RelayTest do
2 use Pleroma.DataCase
3
4 alias Pleroma.Web.ActivityPub.Relay
5
6 test "gets an actor for the relay" do
7 user = Relay.get_actor()
8
9 assert user.ap_id =~ "/relay"
10 end
11 end