forked from AkkomaGang/akkoma
CommonAPITest: Add test that deactivated users can't post.
This commit is contained in:
parent
988ca4ab6a
commit
e92c040ad3
1 changed files with 5 additions and 0 deletions
|
@ -458,6 +458,11 @@ test "it adds emoji in the object" do
|
|||
end
|
||||
|
||||
describe "posting" do
|
||||
test "deactivated users can't post" do
|
||||
user = insert(:user, deactivated: true)
|
||||
assert {:error, _} = CommonAPI.post(user, %{status: "ye"})
|
||||
end
|
||||
|
||||
test "it supports explicit addressing" do
|
||||
user = insert(:user)
|
||||
user_two = insert(:user)
|
||||
|
|
Loading…
Reference in a new issue