Add a test to ensure #39 is fixed.

This commit is contained in:
lain 2019-01-20 11:48:53 +01:00
parent 98d9dcd509
commit be0fb5dec4
1 changed files with 7 additions and 0 deletions

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:"})