Last active
August 29, 2015 14:03
-
-
Save ddelponte/6ad744ee1d11434cde75 to your computer and use it in GitHub Desktop.
How to Gain access to applicaiton data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@TestFor(MyQuartzJob) | |
@TestMixin(ControllerUnitTestMixin) // This allows access to grailsApplication | |
class MyQuartzJobSpec extends Specification { | |
def job | |
def setup() { | |
grailsApplication.config.some.config.stuff = true | |
job = new MyQuartzJob() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment