diff options
| author | Roger Braun <roger@rogerbraun.net> | 2017-09-14 08:08:32 +0200 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2017-09-14 08:08:32 +0200 |
| commit | 641c24cdd46f36205d91a2de7da8bbbfa7aac3ce (patch) | |
| tree | 4566a0b4082e3a966bad469ff383272d5e88bcca /test/web/mastodon_api/status_view_test.exs | |
| parent | 3184939055fb8c1c9577a9d13e69c2c2f7e070c0 (diff) | |
| download | pleroma-641c24cdd46f36205d91a2de7da8bbbfa7aac3ce.tar.gz pleroma-641c24cdd46f36205d91a2de7da8bbbfa7aac3ce.zip | |
Add media upload endpoint.
Diffstat (limited to 'test/web/mastodon_api/status_view_test.exs')
| -rw-r--r-- | test/web/mastodon_api/status_view_test.exs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs index 198ee72a8..836a47db0 100644 --- a/test/web/mastodon_api/status_view_test.exs +++ b/test/web/mastodon_api/status_view_test.exs @@ -76,5 +76,9 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do } assert expected == StatusView.render("attachment.json", %{attachment: object}) + + # If theres a "id", use that instead of the generated one + object = Map.put(object, "id", 2) + assert %{id: 2} = StatusView.render("attachment.json", %{attachment: object}) end end |
