mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 12:46:01 +03:00
13 lines
433 B
Plaintext
13 lines
433 B
Plaintext
GET http://localhost:8000/assert-header
|
|
HTTP/1.0 200
|
|
Content-Type: text/html; charset=utf-8
|
|
Set-Cookie: cookie1=value1; Path=/
|
|
Set-Cookie: cookie2=value2; Path=/
|
|
[Asserts]
|
|
header "Custom" not exists
|
|
header "Content-Type" exists
|
|
header "Header1" equals "value1"
|
|
header "Set-Cookie" exists
|
|
header "Set-Cookie" countEquals 3
|
|
header "Set-Cookie" includes "cookie1=value1; Path=/"
|
|
header "Set-Cookie" not includes "cookie4=value4; Path=/" |