about summary refs log tree commit diff
path: root/ops/kontemplate/util/util_test.go
diff options
context:
space:
mode:
authorArmin Schlegel <a.schlegel@gridx.de>2024-07-12T10·25+0200
committertazjin <tazjin@tvl.su>2024-08-20T17·09+0000
commit2357079891819c679821ea58a7715de7be431aaa (patch)
treef0109773dfbdcd555c48055a7aeceed67d53547c /ops/kontemplate/util/util_test.go
parent2beabe968ca70ce2aef8def08d7dab7340979ea6 (diff)
feat(kontemplate): defaults can now have nested values r/8546
See https://b.tvl.fyi/issues/409 for details.

Change-Id: Ibb54fab7a78e0e5f708c2a7dc8bb26ac0b2b4689
Signed-off-by: Armin Schlegel <a.schlegel@gridx.de>
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11972
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'ops/kontemplate/util/util_test.go')
-rw-r--r--ops/kontemplate/util/util_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/ops/kontemplate/util/util_test.go b/ops/kontemplate/util/util_test.go
index 53c56081758c..328add3d250f 100644
--- a/ops/kontemplate/util/util_test.go
+++ b/ops/kontemplate/util/util_test.go
@@ -47,6 +47,9 @@ func TestMergeWithNilMap(t *testing.T) {
 func TestMergeMaps(t *testing.T) {
 	map1 := map[string]interface{}{
 		"foo": "bar",
+		"baz": map[string]interface{}{
+			"qux": "quux",
+		},
 	}
 
 	map2 := map[string]interface{}{
@@ -56,6 +59,9 @@ func TestMergeMaps(t *testing.T) {
 	result := Merge(&map1, &map2)
 	expected := map[string]interface{}{
 		"foo": "bar",
+		"baz": map[string]interface{}{
+			"qux": "quux",
+		},
 		"bar": "baz",
 	}