From 953cad0e999157f1350c27148798c7bee1f79722 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Sat, 20 Feb 2016 15:15:03 -0800 Subject: [PATCH] Fix test. --- src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt b/src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt index f004b30a..343c05ef 100644 --- a/src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt +++ b/src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt @@ -71,12 +71,4 @@ class IncludeExcludeTest : KobaltTest() { // } Assert.assertEquals(files.map { it.name }, expectedFiles) } - - @Test - private fun f() { - val spec = IFileSpec.GlobSpec("src/**") - val files = spec.toFiles(homeDir("kotlin/kobalt"), "src/main/kotlin") - val inc = IncludedFile(From("src/main/kotlin"), To(""), listOf(IFileSpec.GlobSpec("**"))) -// val files = inc.allFromFiles(homeDir("kotlin/kobalt")) - } }