Просмотр исходного кода

Formatter: Test link with local mention

chores/our-libs-hex-releases
Alex Gleason 4 лет назад
Родитель
Сommit
880301985b
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: 7211D1F99744FBB7
1 измененных файлов: 10 добавлений и 0 удалений
  1. +10
    -0
      test/formatter_test.exs

+ 10
- 0
test/formatter_test.exs Просмотреть файл

@@ -255,6 +255,16 @@ defmodule Pleroma.FormatterTest do

assert {_text, ^expected_mentions, []} = Formatter.linkify(text)
end

test "it parses URL containing local mention" do
_user = insert(:user, %{nickname: "lain"})

text = "https://example.com/@lain"

expected = ~S(<a href="https://example.com/@lain" rel="ugc">https://example.com/@lain</a>)

assert {^expected, [], []} = Formatter.linkify(text)
end
end

describe ".parse_tags" do


Загрузка…
Отмена
Сохранить