diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/scripts/0000-Basic/0002 | 4 | ||||
-rw-r--r-- | test/stdout/0002 | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/test/scripts/0000-Basic/0002 b/test/scripts/0000-Basic/0002 index ad1910510..65ad69047 100644 --- a/test/scripts/0000-Basic/0002 +++ b/test/scripts/0000-Basic/0002 @@ -895,6 +895,8 @@ ${extract json {2} {${extract json{IDs} {\{"other":"foo", "IDs": [116, 943, 234] ${extract json {2} {["red", "green", "blue", "black"]} } ${extract jsons{2} {["red", "green", "blue", "black"]} } +<${extract jsons{5} {["red", "green", "blue", "black"]} }> +expect: <> ${extract json {seconds} { \{"hours":0, "mins":0, "seconds":59\} }} ${extract json {seconds} {${extract json {2} { ["irrelevant", \{"hours":0, "mins":0, "seconds":59\}] }}}} @@ -907,6 +909,8 @@ expect: {"1":116, "2":943, "3":234} <${extract json{nonexistent}{ \{"id": \{"a":101, "b":102\}, "IDs": \{"1":116, "2":943, "3":234\}\} }}> expect: <> +<${extract jsons{nonexistent}{ \{"id": \{"a":101, "b":102\}, "IDs": \{"1":116, "2":943, "3":234\}\} }}> +expect: <> ${if forany_json {[1, 2, 3]}{={$item}{1}}{yes}{no}} ${if forany_jsons{["A", "B", "C"]}{eq{$item}{B}}{yes}{no}} diff --git a/test/stdout/0002 b/test/stdout/0002 index f53d9d563..f5a97289a 100644 --- a/test/stdout/0002 +++ b/test/stdout/0002 @@ -838,6 +838,8 @@ xyz > > "green" > green +> <> +> expect: <> > > 59 > 59 @@ -850,6 +852,8 @@ xyz > > <> > expect: <> +> <> +> expect: <> > > yes > yes |