Fill in some missing fixtures

This commit is contained in:
Joshua Peek
2011-08-30 17:11:56 -05:00
parent 350465d84d
commit 562d110050
23 changed files with 466 additions and 0 deletions

17
test/fixtures/build.gradle vendored Normal file
View File

@@ -0,0 +1,17 @@
task echoDirListViaAntBuilder() {
description = 'Uses the built-in AntBuilder instance to echo and list files'
//Docs: http://ant.apache.org/manual/Types/fileset.html
//Echo the Gradle project name via the ant echo plugin
ant.echo(message: project.name)
ant.echo(path)
ant.echo("${projectDir}/samples")
//Gather list of files in a subdirectory
ant.fileScanner{
fileset(dir:"samples")
}.each{
//Print each file to screen with the CWD (projectDir) path removed.
println it.toString() - "${projectDir}"
}
}