Merge branch 'refactor/db-not-null-constraints-for-registrations' into 'develop'
[akkoma] / test / web / activity_pub / activity_pub_test.exs
index 90ea4662fe80ea6cee6b2d43144b87e54eb4d781..4bb6333c06fe4b0f23642d8de9887d14d8914bf3 100644 (file)
@@ -179,6 +179,12 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
       assert user.follower_address == "http://mastodon.example.org/users/admin/followers"
     end
 
+    test "it returns a user that is invisible" do
+      user_id = "http://mastodon.example.org/users/relay"
+      {:ok, user} = ActivityPub.make_user_from_ap_id(user_id)
+      assert User.invisible?(user)
+    end
+
     test "it fetches the appropriate tag-restricted posts" do
       user = insert(:user)