Polish "Add property for mongo auto-index creation"
See gh-16454
This commit is contained in:
parent
2e9005de14
commit
bf6f9b4c43
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue