1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
This commit is contained in:
Cedric Beust 2015-12-29 08:30:30 +04:00
parent 701a5d9356
commit 15db122504
7 changed files with 20 additions and 20 deletions

View file

@ -9,7 +9,7 @@ import java.io.File
class IncludedFileTest {
fun simple() {
val from = "src/main/kotlin/"
val inf = IncludedFile(From(from), To(""), listOf(IFileSpec.Glob("**.kt")))
val inf = IncludedFile(From(from), To(""), listOf(IFileSpec.GlobSpec("**.kt")))
inf.allFromFiles().map { File(from, it.path) }.forEach {
Assert.assertTrue(it.exists(), "Should exist: $it")
}