mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-07 14:08:38 +00:00
* fix: multipart spec additions and interpolation fixes * test(cli): add interpolation multipart tests * Update packages/bruno-tests/collection/multipart/multipart-mixed-form-data-parse.bru Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * chore: remove assert as curl also gives the same result * chore: codestyle --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
24 lines
271 B
Plaintext
24 lines
271 B
Plaintext
meta {
|
|
name: multipart-mixed-form-data-parse
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
post {
|
|
url: {{echo-host}}
|
|
body: multipartForm
|
|
auth: none
|
|
}
|
|
|
|
headers {
|
|
Content-Type: multipart/mixed
|
|
}
|
|
|
|
body:multipart-form {
|
|
sample: sample
|
|
}
|
|
|
|
assert {
|
|
res.body: matches ^[-]+[a-z0-9]+
|
|
}
|