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