}
@Test
public void putWithDuplicateBodyUsesLastOne() {
driver.addExpectation(
new ClientDriverRequest("/xml")
.withMethod(ClientDriverRequest.Method.PUT)
.withBody("<yo/>", "application/xml"),
new ClientDriverResponse("Back at you", "text/plain").withStatus(202));
Response response = put(baseUrl + "/xml", body("{}", "application/json"), body("<yo/>", "application/xml"));