forked from AkkomaGang/akkoma
0b5bc62b33
This crashed Mastodon workers.
13 lines
319 B
Elixir
13 lines
319 B
Elixir
defmodule Pleroma.Web.CommonAPI.UtilsTest do
|
|
use Pleroma.DataCase
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
import Pleroma.Factory
|
|
|
|
test "it de-duplicates tags" do
|
|
user = insert(:user)
|
|
{:ok, activity} = CommonAPI.post(user, %{"status" => "#2hu #2HU"})
|
|
|
|
assert activity.data["object"]["tag"] == ["2hu"]
|
|
end
|
|
end
|