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