mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 08:42:06 +03:00
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
error: Invalid JSONPath
|
|
--> tests_failed/invalid_jsonpath.hurl:5:10
|
|
|
|
|
5 | jsonpath "" == false
|
|
| ^^ the JSONPath expression '' is not valid
|
|
|
|
|
|
|
error: Invalid JSONPath
|
|
--> tests_failed/invalid_jsonpath.hurl:6:10
|
|
|
|
|
6 | jsonpath "$.tags[0]x" == false
|
|
| ^^^^^^^^^^^^ the JSONPath expression '$.tags[0]x' is not valid
|
|
|
|
|
|
|
error: Invalid JSONPath
|
|
--> tests_failed/invalid_jsonpath.hurl:7:10
|
|
|
|
|
7 | jsonpath "$.tags[0,A]" == false
|
|
| ^^^^^^^^^^^^^ the JSONPath expression '$.tags[0,A]' is not valid
|
|
|
|
|
|
|
error: Invalid JSONPath
|
|
--> tests_failed/invalid_jsonpath.hurl:8:10
|
|
|
|
|
8 | jsonpath "$.tags[0:A]" == false
|
|
| ^^^^^^^^^^^^^ the JSONPath expression '$.tags[0:A]' is not valid
|
|
|
|
|
|
|
error: Invalid JSONPath
|
|
--> tests_failed/invalid_jsonpath.hurl:9:10
|
|
|
|
|
9 | jsonpath "$.tags[]" == false
|
|
| ^^^^^^^^^^ the JSONPath expression '$.tags[]' is not valid
|
|
|
|
|
|
|
error: Invalid JSONPath
|
|
--> tests_failed/invalid_jsonpath.hurl:10:10
|
|
|
|
|
10 | jsonpath "$." == false
|
|
| ^^^^ the JSONPath expression '$.' is not valid
|
|
|
|
|
|