aboutsummaryrefslogtreecommitdiff
path: root/tests/app
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app')
-rw-r--r--tests/app/Models/SearchTest.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/app/Models/SearchTest.php b/tests/app/Models/SearchTest.php
index 403c2c98e..8ff98a8e8 100644
--- a/tests/app/Models/SearchTest.php
+++ b/tests/app/Models/SearchTest.php
@@ -525,6 +525,11 @@ class SearchTest extends PHPUnit\Framework\TestCase {
'(NOT e.title ~ ? AND NOT e.content ~ ? )',
['^ab$', '^ab$']
],
+ [
+ '#/^a(b|c)$/im',
+ "(REPLACE(REPLACE(e.tags, ' #', '#'), '#', '\n') ~* ? )",
+ ['(?m)^a(b|c)$']
+ ],
[ // Not a regex
'inurl:https://example.net/test/',
'(e.link LIKE ? )',