mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 16:26:40 +03:00
18 lines
275 B
Plaintext
18 lines
275 B
Plaintext
|
GET http://localhost:8000/predicates-string
|
||
|
|
||
|
HTTP/1.0 200
|
||
|
[Asserts]
|
||
|
body equals "Hello World!"
|
||
|
body startsWith "Hello"
|
||
|
body contains "llo"
|
||
|
body matches "Hello [a-zA-Z]+!"
|
||
|
|
||
|
|
||
|
GET http://localhost:8000/predicates-string-empty
|
||
|
HTTP/1.0 200
|
||
|
[Asserts]
|
||
|
body equals ""
|
||
|
body exists
|
||
|
|
||
|
|