blob: 21a63c4936bba6b27ad47ed6bbcfdea357827596 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | # Pleroma: A lightweight social networking server
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
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
 |