Skip to content

Commit 68a47ef

Browse files
committed
Remove @PendingFeature
1 parent 901cbfc commit 68a47ef

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

grails-data-mongodb/core/src/test/groovy/org/grails/datastore/gorm/mongo/BeforeUpdatePropertyPersistenceSpec.groovy

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ class BeforeUpdatePropertyPersistenceSpec extends GrailsDataTckSpec<GrailsDataMo
3636
void setupSpec() {
3737
manager.domainClasses.addAll([UserWithBeforeUpdate, UserWithBeforeUpdateAndAutoTimestamp])
3838
}
39-
40-
@PendingFeature
39+
4140
void "Test that properties set in beforeUpdate are persisted"() {
4241
given: "A user is created"
4342
def user = new UserWithBeforeUpdate(name: "Fred")
@@ -92,7 +91,6 @@ class BeforeUpdatePropertyPersistenceSpec extends GrailsDataTckSpec<GrailsDataMo
9291
user.random.length() == 5
9392
}
9493

95-
@PendingFeature
9694
void "Test that multiple updates continue to trigger beforeUpdate"() {
9795
given: "A user is created"
9896
def user = new UserWithBeforeUpdate(name: "Fred")
@@ -119,7 +117,6 @@ class BeforeUpdatePropertyPersistenceSpec extends GrailsDataTckSpec<GrailsDataMo
119117
user.random.length() == 5
120118
}
121119

122-
@PendingFeature
123120
@Issue('GPMONGODB-XXX')
124121
void "Test that properties set in beforeUpdate with AutoTimestamp are persisted"() {
125122
given: "A user with auto timestamp is created"

0 commit comments

Comments
 (0)