1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 16:28:12 -07:00

Fix test.

This commit is contained in:
Cedric Beust 2016-02-20 15:15:03 -08:00
parent 658eba8ee9
commit 953cad0e99

View file

@ -71,12 +71,4 @@ class IncludeExcludeTest : KobaltTest() {
// } // }
Assert.assertEquals(files.map { it.name }, expectedFiles) 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"))
}
} }