aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/app/Utils/dotNotationUtilTest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/app/Utils/dotNotationUtilTest.php b/tests/app/Utils/dotNotationUtilTest.php
index 20d4726af..787d3ddf3 100644
--- a/tests/app/Utils/dotNotationUtilTest.php
+++ b/tests/app/Utils/dotNotationUtilTest.php
@@ -33,6 +33,9 @@ class dotNotationUtilTest extends PHPUnit\Framework\TestCase {
yield [$array, 'items[0].meta.title', 'first'];
yield [$array, 'items.1.meta.title', 'second'];
yield [$array, 'items[1].meta.title', 'second'];
+ yield [$array, '"Hello " & hello & \'!\'', 'Hello world!'];
+ yield [$array, '"Hello & goodbye " & hello & \'!\'', 'Hello & goodbye world!'];
+ yield [$array, '"Hello " & hello & deeper.hello & "!"', 'Hello worldagain!'];
}
/**