forked from AkkomaGang/akkoma
Add a test for accounts/update_credentials
This commit is contained in:
parent
8eebc75c15
commit
9081a071ee
1 changed files with 12 additions and 0 deletions
|
@ -118,6 +118,18 @@ test "updates the user's hide_followers status", %{conn: conn} do
|
||||||
assert user_data["pleroma"]["hide_followers"] == true
|
assert user_data["pleroma"]["hide_followers"] == true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "updates the user's discoverable status", %{conn: conn} do
|
||||||
|
assert %{"source" => %{"pleroma" => %{"discoverable" => true}}} =
|
||||||
|
conn
|
||||||
|
|> patch("/api/v1/accounts/update_credentials", %{discoverable: "true"})
|
||||||
|
|> json_response(:ok)
|
||||||
|
|
||||||
|
assert %{"source" => %{"pleroma" => %{"discoverable" => false}}} =
|
||||||
|
conn
|
||||||
|
|> patch("/api/v1/accounts/update_credentials", %{discoverable: "false"})
|
||||||
|
|> json_response(:ok)
|
||||||
|
end
|
||||||
|
|
||||||
test "updates the user's hide_followers_count and hide_follows_count", %{conn: conn} do
|
test "updates the user's hide_followers_count and hide_follows_count", %{conn: conn} do
|
||||||
conn =
|
conn =
|
||||||
patch(conn, "/api/v1/accounts/update_credentials", %{
|
patch(conn, "/api/v1/accounts/update_credentials", %{
|
||||||
|
|
Loading…
Reference in a new issue