mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 08:02:12 +03:00
11 lines
274 B
Plaintext
11 lines
274 B
Plaintext
# Testing invalid jsonpath expression
|
|
GET http://localhost:8000/error-invalid-jsonpath
|
|
HTTP 200
|
|
[Asserts]
|
|
jsonpath "" == false
|
|
jsonpath "$.tags[0]x" == false
|
|
jsonpath "$.tags[0,A]" == false
|
|
jsonpath "$.tags[0:A]" == false
|
|
jsonpath "$.tags[]" == false
|
|
jsonpath "$." == false
|