mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 16:11:34 +03:00
25 lines
520 B
Plaintext
25 lines
520 B
Plaintext
GET http://foo.com/connect-to
|
|
[Options]
|
|
connect-to: foo.com:80:localhost:8000
|
|
HTTP 200
|
|
`Hello World!`
|
|
|
|
|
|
GET http://bar.com/connect-to
|
|
[Options]
|
|
# We test that we can define multiple connect-to options.
|
|
connect-to: foo.com:80:localhost:8000
|
|
connect-to: bar.com:80:localhost:8000
|
|
connect-to: baz.com:80:localhost:8000
|
|
HTTP 200
|
|
`Hello World!`
|
|
|
|
|
|
GET http://baz.com/connect-to
|
|
[Options]
|
|
connect-to: foo.com:80:localhost:8000
|
|
connect-to: bar.com:80:localhost:8000
|
|
connect-to: baz.com:80:localhost:8000
|
|
HTTP 200
|
|
`Hello World!`
|