hurl/integration/ssl/options.hurl
2023-01-11 14:55:13 +01:00

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!`