# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.Metadata.Providers.RelMeTest do
use Pleroma.DataCase
import Pleroma.Factory
alias Pleroma.Web.Metadata.Providers.RelMe
test "it renders all links with rel='me' from user bio" do
bio =
~s(https://some-link.com https://another-link.com
"], []},
{:link, [rel: "me", href: "https://another-link.com"], []}
]
end
end