mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44: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
|