From 7da978f3f54a8981c082625a8ad2fea48c918675 Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Tue, 7 Nov 2017 12:06:37 +0100 Subject: Linkify fixes. --- test/formatter_test.exs | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/formatter_test.exs b/test/formatter_test.exs index d96f433f9..f91973881 100644 --- a/test/formatter_test.exs +++ b/test/formatter_test.exs @@ -7,10 +7,24 @@ defmodule Pleroma.FormatterTest do describe ".linkify" do test "turning urls into links" do text = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla." - expected = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla." assert Formatter.linkify(text) == expected + + text = "https://mastodon.social/@lambadalambda" + expected = "https://mastodon.social/@lambadalambda" + + assert Formatter.linkify(text) == expected + + text = "@lambadalambda" + expected = "@lambadalambda" + + assert Formatter.linkify(text) == expected + + text = "http://www.cs.vu.nl/~ast/intel/" + expected = "http://www.cs.vu.nl/~ast/intel/" + + assert Formatter.linkify(text) == expected end end -- cgit v1.2.3