I am not used to having the config available in my unit tests. I've always mocked out my own configs specifically for unit tests. But this tends to be a problem if you do something like:
ConfigHolder.getConfig = { -> [newConfigKey:'newConfigVal'] }
Because later on in the integration tests, if you are running the whole suite, you won't be able to get your config out. I think there should be a better way to mock config values during unit tests.
Forgot to mention that this code works perfectly in Grails 1.0.4