more tests

This commit is contained in:
Egor Kislitsyn 2019-04-12 16:51:28 +07:00
parent dd097a406b
commit d0304b4f92
1 changed files with 18 additions and 0 deletions

View File

@ -230,4 +230,22 @@ test "show follow account page if the `acct` is a account link", %{conn: conn} d
assert html_response(response, 200) =~ "Log in to follow"
end
end
describe "POST /api/pleroma/disable_account" do
test "it returns HTTP 200", %{conn: conn} do
user = insert(:user)
response =
conn
|> assign(:user, user)
|> post("/api/pleroma/disable_account", %{"password" => "test"})
|> json_response(:ok)
assert response == %{"status" => "success"}
user = User.get_cached_by_id(user.id)
assert user.info.deactivated == true
end
end
end