Polish "Add property for mongo auto-index creation"
See gh-16454
This commit is contained in:
@@ -92,7 +92,7 @@ public class MongoProperties {
|
||||
private Class<?> fieldNamingStrategy;
|
||||
|
||||
/**
|
||||
* Enables/disables auto-index creation.
|
||||
* Whether to enable auto-index creation.
|
||||
*/
|
||||
private Boolean autoIndexCreation;
|
||||
|
||||
|
||||
@@ -135,12 +135,12 @@ public class MongoDataAutoConfigurationTests {
|
||||
@Test
|
||||
public void customAutoIndexCreation() {
|
||||
this.contextRunner
|
||||
.withPropertyValues("spring.data.mongodb.autoIndexCreation:true")
|
||||
.withPropertyValues("spring.data.mongodb.autoIndexCreation:false")
|
||||
.run((context) -> {
|
||||
MongoMappingContext mappingContext = context
|
||||
.getBean(MongoMappingContext.class);
|
||||
assertThat(mappingContext.isAutoIndexCreation())
|
||||
.isEqualTo(Boolean.TRUE);
|
||||
.isEqualTo(Boolean.FALSE);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user