diff options
Diffstat (limited to 'tests/app')
| -rw-r--r-- | tests/app/Models/SearchTest.php | 5 |
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"%'], + ], ]; } } |
