mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 22:26:05 +01:00
12 lines
266 B
Elixir
12 lines
266 B
Elixir
|
defmodule Pleroma.Web.WebFingerTest do
|
||
|
use Pleroma.DataCase
|
||
|
|
||
|
describe "host meta" do
|
||
|
test "returns a link to the xml lrdd" do
|
||
|
host_info = Pleroma.Web.WebFinger.host_meta
|
||
|
|
||
|
assert String.contains?(host_info, Pleroma.Web.base_url)
|
||
|
end
|
||
|
end
|
||
|
end
|