X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fweb%2Fmastodon_api%2Fmastodon_api_controller_test.exs;h=e4c59d9ffa1916a1d6e9c51e8c04d678edb4bcd6;hb=33a5d0a2385984168f7de063093c6a71c8b07b73;hp=93b29dfaef8631567e4364f85f5b80a35e11b054;hpb=dffde6631d105949b62c1ff27c22fefcb873b2e8;p=akkoma diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs index 93b29dfae..e4c59d9ff 100644 --- a/test/web/mastodon_api/mastodon_api_controller_test.exs +++ b/test/web/mastodon_api/mastodon_api_controller_test.exs @@ -530,7 +530,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do end describe "updating credentials" do - test "updates the user's bio" do + test "updates the user's bio", %{conn: conn} do user = insert(:user) conn = conn @@ -541,7 +541,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do assert user["note"] == "I drink #cofe" end - test "updates the user's name" do + test "updates the user's name", %{conn: conn} do user = insert(:user) conn = conn @@ -552,7 +552,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do assert user["display_name"] == "markorepairs" end - test "updates the user's avatar" do + test "updates the user's avatar", %{conn: conn} do user = insert(:user) new_avatar = %Plug.Upload{content_type: "image/jpg", path: Path.absname("test/fixtures/image.jpg"), filename: "an_image.jpg"} @@ -565,7 +565,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do assert user["avatar"] != "https://placehold.it/48x48" end - test "updates the user's banner" do + test "updates the user's banner", %{conn: conn} do user = insert(:user) new_header = %Plug.Upload{content_type: "image/jpg", path: Path.absname("test/fixtures/image.jpg"), filename: "an_image.jpg"} @@ -579,7 +579,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do end end - test "get instance information" do + test "get instance information", %{conn: conn} do insert(:user, %{local: true}) user = insert(:user, %{local: true}) insert(:user, %{local: false})