Revert accidental removal of test unrelated to identity proofs

This commit is contained in:
Mark Felder 2024-08-12 15:36:01 -04:00
parent 34715b8581
commit b76dfd8146

View file

@ -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