Extract RSS Feed functionality from OStatus

This commit is contained in:
Sergey Suprunenko 2019-10-07 12:20:41 +00:00 committed by kaniini
commit 4b3f77a99f
17 changed files with 513 additions and 251 deletions

View file

@ -0,0 +1,18 @@
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.Metadata.Providers.FeedTest do
use Pleroma.DataCase
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