X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fweb%2Fmastodon_api%2Fstatus_view_test.exs;h=870a205f110c5d30d663370aebcdb0fc52d0539b;hb=9f0a2a714b498edfbacc638fa79e06e3a8dc4d04;hp=836a47db05418ef5d9596fe2497a7a1a34eeb41e;hpb=641c24cdd46f36205d91a2de7da8bbbfa7aac3ce;p=akkoma diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs index 836a47db0..870a205f1 100644 --- a/test/web/mastodon_api/status_view_test.exs +++ b/test/web/mastodon_api/status_view_test.exs @@ -2,7 +2,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do use Pleroma.DataCase alias Pleroma.Web.MastodonAPI.{StatusView, AccountView} - alias Pleroma.{User, Object} + alias Pleroma.User alias Pleroma.Web.OStatus import Pleroma.Factory @@ -36,7 +36,10 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do media_attachments: [], mentions: [], tags: [], - application: nil, + application: %{ + name: "Web", + website: nil + }, language: nil } @@ -55,7 +58,6 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do end test "attachments" do - incoming = File.read!("test/fixtures/incoming_reply_mastodon.xml") object = %{ "type" => "Image", "url" => [ @@ -72,7 +74,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do type: "image", url: "someurl", remote_url: "someurl", - preview_url: "someurl" + preview_url: "someurl", + text_url: "someurl" } assert expected == StatusView.render("attachment.json", %{attachment: object})