test: add regression test for #316

This commit is contained in:
William Pitcock 2018-10-11 10:35:32 +00:00
parent 2c29329d39
commit ebc32045f0
1 changed files with 9 additions and 0 deletions

View File

@ -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)