Revert "Remove newlines completely so mastodon doesn't bug out."
[akkoma] / test / web / twitter_api / twitter_api_utils_test.exs
1 defmodule Pleroma.Web.TwitterAPI.UtilsTest do
2 alias Pleroma.Web.TwitterAPI.Utils
3 use Pleroma.DataCase
4
5 test "it adds attachment links to a given text and attachment set" do
6 attachment = %{
7 "url" => [%{"href" => "http://heise.de/i\"m a boy.png"}]
8 }
9
10 res = Utils.add_attachments("", [attachment])
11
12 assert res == "<br />\n<a href=\"http://heise.de/i%22m%20a%20boy.png\" class='attachment'>i\"m a boy.png</a>"
13 end
14 end