public void optionsRequestIsSuccessful() {
driver.addExpectation(
new ClientDriverRequest("/").withMethod(Method.OPTIONS),
new ClientDriverResponse((String) null, null).withHeader("Allow", "GET, DELETE, OPTIONS"));
Response response = options(baseUrl);
assertThat(response, hasStatusCode(204));
assertThat(response, hasHeaderWithValue("Allow", containsString("GET")));
assertThat(response, hasHeaderWithValue("Allow", containsString("DELETE")));
assertThat(response, hasHeaderWithValue("Allow", containsString("OPTIONS")));