forked from AkkomaGang/akkoma
Verify MastoFE Controller put_settings response
This commit is contained in:
parent
e47f83cfc8
commit
3a8404820d
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ test "put settings", %{conn: conn} do
|
||||||
|> assign(:token, insert(:oauth_token, user: user, scopes: ["write:accounts"]))
|
|> assign(:token, insert(:oauth_token, user: user, scopes: ["write:accounts"]))
|
||||||
|> put("/api/web/settings", %{"data" => %{"programming" => "socks"}})
|
|> put("/api/web/settings", %{"data" => %{"programming" => "socks"}})
|
||||||
|
|
||||||
assert _result = json_response(conn, 200)
|
assert %{} = json_response(conn, 200)
|
||||||
|
|
||||||
user = User.get_cached_by_ap_id(user.ap_id)
|
user = User.get_cached_by_ap_id(user.ap_id)
|
||||||
assert user.mastofe_settings == %{"programming" => "socks"}
|
assert user.mastofe_settings == %{"programming" => "socks"}
|
||||||
|
|
Loading…
Reference in a new issue