2019-10-07 12:20:41 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-10-07 12:20:41 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.Metadata.Providers.FeedTest do
|
2020-12-21 11:21:40 +00:00
|
|
|
use Pleroma.DataCase, async: true
|
2019-10-07 12:20:41 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
alias Pleroma.Web.Metadata.Providers.Feed
|
|
|
|
|
|
|
|
test "it renders a link to user's atom feed" do
|
|
|
|
user = insert(:user, nickname: "lain")
|
|
|
|
|
|
|
|
assert Feed.build_tags(%{user: user}) == [
|
|
|
|
{:link,
|
|
|
|
[rel: "alternate", type: "application/atom+xml", href: "/users/lain/feed.atom"], []}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
end
|