mirror of
https://github.com/lightbend/config.git
synced 2025-01-15 14:50:23 +08:00
Merge pull request #296 from fpringvaldsen/task/removeValue-fix
Fix removeValue test failures
This commit is contained in:
commit
2dcefc006b
@ -226,6 +226,30 @@ class ConfigDocumentTest extends TestUtils {
|
||||
assertEquals("""{"a": "b" }""", configDoc.removeValue("c").render())
|
||||
}
|
||||
|
||||
@Test
|
||||
def configDocumentRemoveMultiple {
|
||||
val origText = "a { b: 42 }, a.b = 43, a { b: { c: 44 } }"
|
||||
val configDoc = ConfigDocumentFactory.parseString(origText)
|
||||
val removed = configDoc.removeValue("a.b")
|
||||
assertEquals("a { }, a { }", removed.render())
|
||||
}
|
||||
|
||||
@Test
|
||||
def configDocumentRemoveOverridden {
|
||||
val origText = "a { b: 42 }, a.b = 43, a { b: { c: 44 } }, a : 57 "
|
||||
val configDoc = ConfigDocumentFactory.parseString(origText)
|
||||
val removed = configDoc.removeValue("a.b")
|
||||
assertEquals("a { }, a { }, a : 57 ", removed.render())
|
||||
}
|
||||
|
||||
@Test
|
||||
def configDocumentRemoveNested {
|
||||
val origText = "a { b: 42 }, a.b = 43, a { b: { c: 44 } }"
|
||||
val configDoc = ConfigDocumentFactory.parseString(origText)
|
||||
val removed = configDoc.removeValue("a.b.c")
|
||||
assertEquals("a { b: 42 }, a.b = 43, a { b: { } }", removed.render())
|
||||
}
|
||||
|
||||
@Test
|
||||
def configDocumentArrayFailures {
|
||||
// Attempting a replace on a ConfigDocument parsed from an array throws an error
|
||||
|
Loading…
Reference in New Issue
Block a user