tests: add test for fetching the internal fetch actor

This commit is contained in:
Ariadne Conill 2019-07-17 17:48:08 +00:00
parent cf9cb953d5
commit 3d23a12d75
1 changed files with 11 additions and 0 deletions

View File

@ -48,6 +48,17 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubControllerTest do
end
end
describe "/internal/fetch" do
test "it returns the internal fetch user", %{conn: conn} do
res =
conn
|> get(activity_pub_path(conn, :internal_fetch))
|> json_response(200)
assert res["id"] =~ "/fetch"
end
end
describe "/users/:nickname" do
test "it returns a json representation of the user with accept application/json", %{
conn: conn