Addressing more comments

tests do assertion on request data and headers
 doc fixed
This commit is contained in:
Denis Makogon
2017-10-07 02:24:07 +03:00
parent 181ccf54b4
commit e8f317abd4
2 changed files with 21 additions and 3 deletions

View File

@@ -88,7 +88,9 @@ Internally function receives data in following format:
```json
{
"body": "{\"some\": \"input\"}",
"body": {
"some": "data"
},
"headers": {
"yo": ["dawg"]
}
@@ -102,7 +104,7 @@ Function's output format should have following format:
"status_code": 200,
"body": "...",
"headeres": {
"A": "b"
"A": ["b"]
}
}
```