mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-29 03:13:45 +01:00
36 lines
434 B
Plaintext
36 lines
434 B
Plaintext
meta {
|
|
name: echo xml parsed
|
|
type: http
|
|
seq: 3
|
|
}
|
|
|
|
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"
|
|
]
|
|
}
|
|
});
|
|
});
|
|
|
|
}
|