hurl/integration/ssl/options.hurl
2022-08-12 17:42:24 +02:00

25 lines
392 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/cert.pem # with a custom certificate
HTTP/* 200
```Hello World!```