aboutsummaryrefslogtreecommitdiff
path: root/tests/app/Models/SearchTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Models/SearchTest.php')
-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 e2dba31a1..e4457fedc 100644
--- a/tests/app/Models/SearchTest.php
+++ b/tests/app/Models/SearchTest.php
@@ -332,6 +332,11 @@ class SearchTest extends PHPUnit\Framework\TestCase {
'(e.title LIKE ? )',
['%(test)%'],
],
+ [
+ 'intitle:\'"hello world"\'',
+ '(e.title LIKE ? )',
+ ['%"hello world"%'],
+ ],
];
}
}