Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
@artifact.package@
@artifact.package@import grails.test.spock.IntegrationSpec

import spock.lang.*

/**
*
*/
class @artifact.name@ extends Specification {
class @artifact.name@ extends IntegrationSpec {

def setup() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ target ('default': "Creates a new Grails integration test which loads the whole

for (name in argsMap["params"]) {
name = purgeRedundantArtifactSuffix(name, 'Spec')
createIntegrationTest(name: name, suffix: "", testType:"Integration")
createIntegrationTest(name: name, suffix: "Integration", testType:"Integration")
}
}

Expand Down