Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Grails. All my Spock Integration tests are working.

But when I turned autoFlush property true, several tests started failing, because data weren't being rolled back.

Any ideas?

*Im using grails 2.1.1

share|improve this question
Maybe something is flushed outside a transaction, or you're using a DDL that is not completely transactional in h2. – Victor Sergienko Nov 20 '12 at 8:35
I'm using a custom class to build objects, ie I call myService.buildTeams(), which creates and saves a set of predefined teams. Should I define transactional = false? – canotto90 Nov 20 '12 at 14:16
Shouldn't be a problem, as long as the method invocation is INSIDE a unit test's transaction. – Victor Sergienko Nov 20 '12 at 14:24
1  
I found the problem. It was that one of my test classes was extending from spock.lang.Specification instead of Integrationspec. – canotto90 Nov 20 '12 at 15:57
1  
Worth posting an answer. Someone could also run into this. – Victor Sergienko Nov 20 '12 at 16:16

1 Answer

up vote 2 down vote accepted

One of my tests was extending Specification instead of IntegrationSpec. When I made it extend IntegrationSpec, all data was rolled back after each test.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.