Extract RSS Feed functionality from OStatus
This commit is contained in:
parent
5c32e6ee91
commit
4b3f77a99f
17 changed files with 513 additions and 251 deletions
18
test/web/metadata/feed_test.exs
Normal file
18
test/web/metadata/feed_test.exs
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue