mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 08:19:22 +03:00
24 lines
266 B
Plaintext
24 lines
266 B
Plaintext
|
POST http://localhost:8000/post-multilines
|
||
|
```
|
||
|
name,age
|
||
|
bob,10
|
||
|
bill,22
|
||
|
```
|
||
|
|
||
|
HTTP/1.0 200
|
||
|
|
||
|
|
||
|
GET http://localhost:8000/get-bob-age
|
||
|
HTTP/1.0 200
|
||
|
[Captures]
|
||
|
bob_age: body
|
||
|
|
||
|
|
||
|
POST http://localhost:8000/post-multilines
|
||
|
```
|
||
|
name,age
|
||
|
bob,{{bob_age}}
|
||
|
bill,22
|
||
|
```
|
||
|
HTTP/1.0 200
|