bruno/packages/bruno-tests/collection/echo/echo xml parsed.bru
2024-01-29 13:34:55 +05:30

36 lines
434 B
Plaintext

meta {
name: echo xml parsed
type: http
seq: 4
}
post {
url: {{host}}/api/echo/xml-parsed
body: xml
auth: none
}
body:xml {
<hello>
<world>bruno</world>
</hello>
}
assert {
res.status: eq 200
}
tests {
test("should return parsed xml", function() {
const data = res.getBody();
expect(res.getBody()).to.eql({
"hello": {
"world": [
"bruno"
]
}
});
});
}