hurl/integration/tests_ok/post_multilines.hurl

24 lines
254 B
Plaintext
Raw Normal View History

2020-08-27 10:07:46 +03:00
POST http://localhost:8000/post-multilines
```
name,age
bob,10
bill,22
```
2022-11-11 16:25:00 +03:00
HTTP 200
2020-08-27 10:07:46 +03:00
GET http://localhost:8000/get-bob-age
2022-11-11 16:25:00 +03:00
HTTP 200
2020-08-27 10:07:46 +03:00
[Captures]
bob_age: body
POST http://localhost:8000/post-multilines
```
name,age
bob,{{bob_age}}
bill,22
```
2022-11-11 16:25:00 +03:00
HTTP 200