Grails Fixtures Plugin: How do I purge a fixture after running one test case with it?

45 Views Asked by At

Let's say I have a fixture defined a:

def fixture = fixtureLoader.load { 
    book( Book, name: "XYZ")
}

I want to do something like:

fixture.purge()

Is it possible? If so, how?

0

There are 0 best solutions below