summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Felder <feld@feld.me>2024-08-12 15:36:01 -0400
committerMark Felder <feld@feld.me>2024-08-12 15:36:01 -0400
commitb76dfd8146116320cbbc00d39f29c7232f5dcfab (patch)
treef30a899fee10b4bbe078c53014d5b047820871ab
parent34715b8581daca64b474438b590730ee53e86017 (diff)
downloadpleroma-b76dfd8146116320cbbc00d39f29c7232f5dcfab.tar.gz
pleroma-b76dfd8146116320cbbc00d39f29c7232f5dcfab.zip
Revert accidental removal of test unrelated to identity proofs
-rw-r--r--test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs b/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs
index 97ae3d37b..8e7fe4013 100644
--- a/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs
+++ b/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs
@@ -6,6 +6,15 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
use Pleroma.Web.ConnCase, async: true
describe "empty_array/2 (stubs)" do
+ test "GET /api/v1/endorsements" do
+ %{conn: conn} = oauth_access(["read:accounts"])
+
+ assert [] ==
+ conn
+ |> get("/api/v1/endorsements")
+ |> json_response(200)
+ end
+
test "GET /api/v1/trends", %{conn: conn} do
assert [] ==
conn