You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A body can contain variables that should be processed as in the CLI.
Example
### Send request with 2 variables in request's body
POST https://httpbin.org/post
Content-Type: application/json
{
"id": {{ id }},
"user": "{{ username }}"
}
The text was updated successfully, but these errors were encountered:
- implement test case with payload that contains placeholders
- implement variable substitution on the body
Signed-off-by: Sven Kanoldt <[email protected]>
- closes#21
- introduce echo server behaviour to the testlib, to verify the variable substitution on the body
- implement test case with payload that contains placeholders
- implement variable substitution on the body
- bump `env_logger` and `minijinja` versions
Extension to the http language file format #5
A body can contain variables that should be processed as in the CLI.
Example
The text was updated successfully, but these errors were encountered: