Browse Source

more tests

tags/v1.1.4
Egor Kislitsyn 5 years ago
parent
commit
d0304b4f92
1 changed files with 18 additions and 0 deletions
  1. +18
    -0
      test/web/twitter_api/util_controller_test.exs

+ 18
- 0
test/web/twitter_api/util_controller_test.exs View File

@@ -230,4 +230,22 @@ defmodule Pleroma.Web.TwitterAPI.UtilControllerTest do
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

Loading…
Cancel
Save