1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-14 08:40:06 +01:00

Merge branch 'add-custom-emoji-test' into 'develop'

Add a test to ensure #39 is fixed.

See merge request pleroma/pleroma!687
This commit is contained in:
lambda 2019-01-20 10:58:19 +00:00
commit 501fba33d6

View File

@ -17,6 +17,13 @@ defmodule Pleroma.Web.CommonAPI.Test do
assert activity.data["object"]["tag"] == ["2hu"]
end
test "it adds emoji in the object" do
user = insert(:user)
{:ok, activity} = CommonAPI.post(user, %{"status" => ":moominmamma:"})
assert activity.data["object"]["emoji"]["moominmamma"]
end
test "it adds emoji when updating profiles" do
user = insert(:user, %{name: ":karjalanpiirakka:"})