Skip to content

Commit 6ac5655

Browse files
remove @ignore from some tests
1 parent 27d04ee commit 6ac5655

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

grails-test-suite-uber/src/test/groovy/grails/validation/DomainConstraintGettersSpec.groovy

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ class DomainConstraintGettersSpec extends Specification {
229229

230230
// DOMAIN WITH TRANSIENTS
231231

232-
@Ignore
233232
void 'ensure transient properties and methods are not validated'() {
234233
DomainWithTransients domain = new DomainWithTransients()
235234
when: 'domain with transient methods and properties is validated'
@@ -239,7 +238,6 @@ class DomainConstraintGettersSpec extends Specification {
239238
domain.errors.getErrorCount() == 0
240239
}
241240

242-
@Ignore
243241
void 'ensure transient methods and properties are not constrained'() {
244242
when: 'constrained properties map is get'
245243
Map constrainedProperties = DomainWithTransients.getConstrainedProperties()
@@ -250,7 +248,6 @@ class DomainConstraintGettersSpec extends Specification {
250248

251249
// DOMAIN WITH SUPER CLASS WITH TRANSIENTS
252250

253-
@Ignore
254251
void 'ensure inherited transient properties and methods are not validated'() {
255252
DomainWithTransients domain = new DomainWithTransients()
256253
when: 'domain with superclass properties and methods is validated'
@@ -260,7 +257,6 @@ class DomainConstraintGettersSpec extends Specification {
260257
domain.errors.getErrorCount() == 0
261258
}
262259

263-
@Ignore
264260
void 'ensure inherited transient methods and properties are not constrained'() {
265261
when: 'constrained properties map is get'
266262
Map constrainedProperties = DomainWithTransients.getConstrainedProperties()

0 commit comments

Comments
 (0)