From ae8d31e83f28b363ead4456ad59595f44348310b Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Tue, 11 Apr 2023 17:24:38 +0200 Subject: [PATCH] Add test case for deeplink long URLs --- module/Core/test/ShortUrl/Model/ShortUrlCreationTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/Core/test/ShortUrl/Model/ShortUrlCreationTest.php b/module/Core/test/ShortUrl/Model/ShortUrlCreationTest.php index 17a8f581..401a3a31 100644 --- a/module/Core/test/ShortUrl/Model/ShortUrlCreationTest.php +++ b/module/Core/test/ShortUrl/Model/ShortUrlCreationTest.php @@ -177,6 +177,7 @@ class ShortUrlCreationTest extends TestCase yield 'mailto' => ['mailto:foo@example.com']; yield 'file' => ['file:///foo/bar']; yield 'https' => ['https://example.com']; + yield 'deeplink' => ['shlink://some/path']; } #[Test, DataProvider('provideTitles')]