forked from AkkomaGang/akkoma
test: add regression test for #316
This commit is contained in:
parent
2c29329d39
commit
ebc32045f0
1 changed files with 9 additions and 0 deletions
|
@ -55,6 +55,15 @@ test "can't follow a user who blocked us" do
|
|||
{:error, _} = User.follow(blockee, blocker)
|
||||
end
|
||||
|
||||
test "local users do not automatically follow local locked accounts" do
|
||||
follower = insert(:user, info: %{"locked" => true})
|
||||
followed = insert(:user, info: %{"locked" => true})
|
||||
|
||||
{:ok, follower} = User.maybe_direct_follow(follower, followed)
|
||||
|
||||
refute User.following?(follower, followed)
|
||||
end
|
||||
|
||||
# This is a somewhat useless test.
|
||||
# test "following a remote user will ensure a websub subscription is present" do
|
||||
# user = insert(:user)
|
||||
|
|
Loading…
Reference in a new issue