2019-07-30 14:40:59 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-01-22 01:14:42 +00:00
|
|
|
defmodule Mobilizon.Federation.ActivityPub.RelayTest do
|
2019-07-30 14:40:59 +00:00
|
|
|
use Mobilizon.DataCase
|
|
|
|
|
2020-01-22 01:14:42 +00:00
|
|
|
alias Mobilizon.Federation.ActivityPub.Relay
|
2019-07-30 14:40:59 +00:00
|
|
|
|
|
|
|
test "gets an actor for the relay" do
|
|
|
|
actor = Relay.get_actor()
|
|
|
|
|
|
|
|
assert actor.url =~ "/relay"
|
|
|
|
end
|
|
|
|
end
|