Grails Fixtures Plugin
3% of Grails users
Dependency:
compile "org.grails.plugins:fixtures:1.3"
Summary
Load complex domain data via a simple DSL
Installation
In BuildConfig.groovy:In BuildConfig.groovy:
// adjust versions as necessary plugins { test ':fixtures:1.3' }
You also need to install the build-test-data plug-in if you want to use the built-test-data integration featuresFrom the command line:
grails install-plugin build-test-data
// adjust versions as necessary plugins { test ':build-test-data:2.1.2' test ':fixtures:1.3' }
Description
The fixtures plugin allows you to load test data via a convenient DSL.Please see the documentation at: http://gpc.github.com/grails-fixtures/