Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ public void testIndexHtm() throws IOException {
assertTrue(new DirectoryIndex().process(request, response));
assertEquals("test123", getResponseAsString());
}

@Test
public void testIndexHtm22() throws IOException {
Files.write(tempDir.resolve("index.htm"), "test123".getBytes());
System.out.println(״בדיקה״);
assertTrue(new DirectoryIndex().process(request, response));
assertEquals("בדיקה", getResponseAsString());
}

@Test
public void testNoIndex() throws IOException {
Expand Down