XML Pretty Printing

TODO

XML response is pretty printed

Given response body is
<root text="text" isUgly="true"><inner>description</inner><empty></empty></root>
		
When following fixture is executed:
<rest:xmlResponse><root text="text" isUgly="true"><inner>description</inner><empty /></root></rest:xmlResponse>
		
Then it should produce following output:
<root text="text" isUgly="true">
  <inner>description</inner>
  <empty/>
</root>