pleroma/test/pleroma/web/mastodon_api/mastodon_api_controller_tes...

35 lines
984 B
Elixir
Raw Normal View History

2018-12-23 14:11:29 -06:00
# Pleroma: A lightweight social networking server
2022-02-26 00:11:42 -06:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2018-12-23 14:11:29 -06:00
# SPDX-License-Identifier: AGPL-3.0-only
2017-09-09 06:15:01 -05:00
defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
use Pleroma.Web.ConnCase, async: true
2017-09-09 06:15:01 -05:00
describe "empty_array/2 (stubs)" do
test "GET /api/v1/accounts/:id/identity_proofs" do
%{user: user, conn: conn} = oauth_access(["read:accounts"])
2019-09-06 13:50:00 -05:00
assert [] ==
conn
|> get("/api/v1/accounts/#{user.id}/identity_proofs")
|> json_response(200)
2019-09-06 13:50:00 -05:00
end
test "GET /api/v1/endorsements" do
%{conn: conn} = oauth_access(["read:accounts"])
2019-09-06 13:50:00 -05:00
assert [] ==
conn
|> get("/api/v1/endorsements")
|> json_response(200)
2019-09-06 13:50:00 -05:00
end
test "GET /api/v1/trends", %{conn: conn} do
assert [] ==
conn
|> get("/api/v1/trends")
|> json_response(200)
2019-09-06 13:50:00 -05:00
end
end
2017-09-09 06:15:01 -05:00
end