@Test
public void should_not_keep_alive_for_close_request() throws Exception {
server.response("foo");
running(server, new Runnable() {
@Override
public void run() throws Exception {
Response response = Request.Get(root()).addHeader("Connection", "close").execute();
assertThat(response.returnResponse().getFirstHeader("Connection"), nullValue());
}