@Test
public void listsDirectory() throws Exception {
handler.enableDirectoryListing(true).welcomeFile("doesnotexist");
StubHttpResponse response = handle(request("/"));
assertEquals(200, response.status());
assertThat(response.contentsString(), containsString("index.html"));
assertThat(response.contentsString(), containsString("jquery-1.5.2.js"));
assertThat(response.contentsString(), not(containsString("EmbeddedResourceHandlerTest")));
}