mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 11:43:08 +03:00
6b7753e174
If HTTP version or status are not correct, we fail the test without running others asserts.
16 lines
400 B
Plaintext
16 lines
400 B
Plaintext
# We add various explicit asserts on the body, and
|
|
# implicit asserts on the response headers.
|
|
# As the status code is not correct, those asserts
|
|
# should not be tested (the status code is a "stronger"
|
|
# assert than the others).
|
|
|
|
GET http://localhost:8000/not_found
|
|
|
|
HTTP 200
|
|
x-baz: xxx
|
|
[Asserts]
|
|
duration < 0
|
|
jsonpath "$.foo" startsWith "something"
|
|
jsonpath "$.bar" not exists
|
|
header "x-bar" exists
|