class TestTemplateGrailsPlugin { def version = '1.3.2' def dependsOn = [core:'1.0.3 > *', testing:'0.3 > *'] def author = "Mike Hugo" def authorEmail = "mike@piragua.com" def title = "Test Templates" def description = '''\ This plugin provides a template unit test for generated controller scaffolding and stubs out unit tests for Grails Domain classes Special thanks to the following people for contributions to this plugin: - Colin Harrington ''' def documentation = "http://grails.org/TestTemplate+Plugin" /* RELEASE NOTES 1.3.2 - Bug Fix - renamed class in ControllerUnitTests.groovy template from *ControllerTests to *ControllerUnitTests 1.3.1 - Improvement - removed reference to "Book" in the DomainUnitTests template (Colin Harrington) 1.3 - Bug fix - used GRAILS_HOME in GenerateDomainUnitTest.groovy and InstallTestTemplates.groovy for backwards compability with Grails 1.0.3 1.2 - Stub out Domain Class unit test - added Generate Domain Unit Test Script - added DomainUnitTests.groovy template 1.1 - Bug Fix - added install-test-templates script to copy templates to project basedir - removed obsolete ControllerUnitTests-Grails-1.0.3.groovy file - moved directory where templates are located to src/templates/artifacts/test-templates 1.0 - Intial Release - script to generate controller unit test class - event hook for Grails 1.0.4 to automatically generate test case when controller is generated - template for unit testing a controller based on the testing plugin */ }