mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 11:19:19 +00:00
Add a test to ensure #39 is fixed.
This commit is contained in:
parent
98d9dcd509
commit
be0fb5dec4
1 changed files with 7 additions and 0 deletions
|
@ -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:"})
|
||||
|
||||
|
|
Loading…
Reference in a new issue