2019-10-01 07:45:04 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-10-01 07:45:04 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.SuggestionControllerTest do
|
2020-12-21 11:21:40 +00:00
|
|
|
use Pleroma.Web.ConnCase, async: true
|
2019-10-01 07:45:04 +00:00
|
|
|
|
2019-12-19 14:23:27 +00:00
|
|
|
setup do: oauth_access(["read"])
|
|
|
|
|
2020-01-27 13:21:50 +00:00
|
|
|
test "returns empty result", %{conn: conn} do
|
2019-10-01 07:45:04 +00:00
|
|
|
res =
|
|
|
|
conn
|
|
|
|
|> get("/api/v1/suggestions")
|
2020-05-13 10:15:24 +00:00
|
|
|
|> json_response_and_validate_schema(200)
|
2019-10-01 07:45:04 +00:00
|
|
|
|
|
|
|
assert res == []
|
|
|
|
end
|
|
|
|
end
|