tests: add test to ensure invisible actors are rendered with the invisible hint set to true
This commit is contained in:
parent
52d56ed705
commit
ba92522c69
@ -76,6 +76,12 @@ defmodule Pleroma.Web.ActivityPub.UserViewTest do
|
||||
assert result["image"]["url"] == "https://somebanner"
|
||||
end
|
||||
|
||||
test "renders an invisible user with the invisible property set to true" do
|
||||
user = insert(:user, %{info: %{invisible: true}})
|
||||
|
||||
assert %{"invisible" => true} = UserView.render("service.json", %{user: user})
|
||||
end
|
||||
|
||||
describe "endpoints" do
|
||||
test "local users have a usable endpoints structure" do
|
||||
user = insert(:user)
|
||||
|
Loading…
Reference in New Issue
Block a user