@Test
public void shouldDelete() throws Exception {
request = new WebRequestImpl(WebMethod.DELETE, serverURI() + "/testDel", requestHeaders, null);
WebResponse response = client.handle(request);
assertThat(response.getStatus()).isEqualTo(HTTP_NO_CONTENT);
}