Previously in Grails 2.2.4 when running integration tests the database migration plugin would start up liquibase and read my changelog.xml file and populate the in memory database with my data.
Then my integration tests would query that data and all was well. After upgrading to Grails 2.3.2, the migration scripts no longer run when I start integration tests.
I tried adding:
grails.plugin.databasemigration.autoMigrateScripts = ['RunApp', 'TestApp']
Believing that this would let the migration run during test. This however has not helped.
Is it possible in Grails 2.3.2 to run migration scripts during integration testing? If so how?