Files
bruno/packages/bruno-tests/collection/url-serialization/Duplicate Keys.bru

28 lines
429 B
Plaintext

meta {
name: Duplicate Keys
type: http
seq: 1
}
post {
url: https://echo.usebruno.com
body: formUrlEncoded
auth: none
}
headers {
Content-Type: application/x-www-form-urlencoded
}
body:form-urlencoded {
tags: frontend
tags: api
user: john
}
script:post-response {
test('Response body matches expected value', function () {
expect(res.getBody()).to.eql("tags=frontend&tags=api&user=john");
});
}