Skip to content

Commit 57aca66

Browse files
author
nebolsin
committed
fix for GRAILS-1278: applied patch from Peter Ledbrook (with small changes)
git-svn-id: https://svn.codehaus.org/grails/trunk@4669 1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d
1 parent d3edef8 commit 57aca66

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

scripts/BugReport.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ task ('default': "Creates a ZIP containing source artifacts for reporting bugs")
4848

4949
Ant.zip(destfile:zipName) {
5050
fileset(dir: "${basedir}", includes: "grails-app/**/*")
51-
fileset(dir: "${basedir}", includes: "grails-tests/**/*")
51+
fileset(dir: "${basedir}", includes: "test/**/*")
5252
fileset(dir: "${basedir}", includes: "scripts/**/*")
5353
fileset(dir: "${basedir}", includes: "spring/**/*")
5454
fileset(dir: "${basedir}", includes: "src/**/*")

scripts/CreateTestSuite.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ task ('default': "Creates a new Grails test suite") {
3636
task (createTestSuite: "Implementation of create-test-suite") {
3737
typeName <<= "Tests"
3838
artifactName = "Tests"
39-
artifactPath = "grails-tests"
39+
artifactPath = "test/integration"
4040
createArtifact()
4141
}

scripts/Stats.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ task ('default': "Generates basic stats for a Grails project") {
4040
new Expando(name: "Tag Libraries", filetype: ".groovy", path: "taglib"),
4141
new Expando(name: "Groovy Helpers", filetype: ".groovy", path: "src.groovy"),
4242
new Expando(name: "Java Helpers", filetype: ".java", path: "src.java"),
43-
new Expando(name: "Tests", filetype: ".groovy", path: "grails-tests"),
43+
new Expando(name: "Unit Tests", filetype: ".groovy", path: "test.unit"),
44+
new Expando(name: "Integration Tests", filetype: ".groovy", path: "test.integration"),
4445
]
4546

4647

0 commit comments

Comments
 (0)