mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
10 lines
379 B
Plaintext
10 lines
379 B
Plaintext
GET http://localhost:8000/assert-match
|
|
HTTP/1.0 200
|
|
[Asserts]
|
|
jsonpath "$.date1" matches "\\d{4}-\\d{2}-\\d{2}"
|
|
jsonpath "$.date1" matches /\d{4}-\d{2}-\d{2}/
|
|
jsonpath "$.date2" matches /\d{4}-\d{2}-\d{2}/
|
|
jsonpath "$.date1" matches /^\d{4}-\d{2}-\d{2}$/
|
|
jsonpath "$.date2" not matches /^\d{4}-\d{2}-\d{2}$/
|
|
jsonpath "$.path1" matches /aa\/bb/
|
|
jsonpath "$.path2" matches /aa\\bb/ |