driver.addExpectation(
new ClientDriverRequest("/jsons")
.withMethod(ClientDriverRequest.Method.POST)
.withBody("<yo/>", "application/xml")
.withHeader("Accept", "Nothing"),
new ClientDriverResponse("Back at you", "text/plain").withStatus(202));
Response response = post(baseUrl + "/jsons", body("<yo/>", "application/xml"), header("Accept", "Nothing"));
assertThat(response, hasStatusCode(202));
assertThat(response.getContent(), is("Back at you"));