We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d4bcb3 commit 1b01a55Copy full SHA for 1b01a55
src/test/java/org/takes/tk/TkFilesTest.java
@@ -30,6 +30,8 @@
30
import org.hamcrest.MatcherAssert;
31
import org.junit.jupiter.api.Assertions;
32
import org.junit.jupiter.api.Test;
33
+import org.junit.jupiter.api.condition.DisabledOnOs;
34
+import org.junit.jupiter.api.condition.OS;
35
import org.junit.jupiter.api.io.TempDir;
36
import org.llorllale.cactoos.matchers.StartsWith;
37
import org.takes.HttpException;
@@ -48,6 +50,7 @@ final class TkFilesTest {
48
50
* @throws Exception If some problem inside
49
51
*/
52
@Test
53
+ @DisabledOnOs(OS.WINDOWS)
54
void dispatchesByFileName(@TempDir final Path temp) throws Exception {
55
final File file = temp.resolve("a.txt").toFile();
56
FileUtils.write(
0 commit comments