akkoma/test/pleroma/web/mastodon_api/mastodon_api_controller_test.exs

35 lines
984 B
Elixir
Raw Normal View History

2018-12-23 20:11:29 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
2018-12-23 20:11:29 +00:00
# SPDX-License-Identifier: AGPL-3.0-only
2017-09-09 11:15:01 +00:00
defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do
use Pleroma.Web.ConnCase, async: true
2017-09-09 11:15:01 +00: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 18:50:00 +00:00
assert [] ==
conn
|> get("/api/v1/accounts/#{user.id}/identity_proofs")
|> json_response(200)
2019-09-06 18:50:00 +00:00
end
test "GET /api/v1/endorsements" do
%{conn: conn} = oauth_access(["read:accounts"])
2019-09-06 18:50:00 +00:00
assert [] ==
conn
|> get("/api/v1/endorsements")
|> json_response(200)
2019-09-06 18:50:00 +00:00
end
test "GET /api/v1/trends", %{conn: conn} do
assert [] ==
conn
|> get("/api/v1/trends")
|> json_response(200)
2019-09-06 18:50:00 +00:00
end
end
2017-09-09 11:15:01 +00:00
end