mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
25 lines
391 B
Plaintext
25 lines
391 B
Plaintext
GET https://localhost:8001/hello
|
|
[Options]
|
|
insecure: true
|
|
|
|
HTTP 200
|
|
`Hello World!`
|
|
|
|
|
|
GET https://localhost:8001/hello
|
|
[Options]
|
|
# Test that options overridden is possible, last is the winner.
|
|
insecure: false
|
|
insecure: true
|
|
|
|
HTTP 200
|
|
`Hello World!`
|
|
|
|
|
|
GET https://localhost:8001/hello
|
|
[Options]
|
|
cacert: ssl/server/cert.selfsigned.pem # with a custom certificate
|
|
|
|
HTTP 200
|
|
`Hello World!`
|