about summary refs log tree commit diff
path: root/context/context_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'context/context_test.go')
-rw-r--r--context/context_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/context/context_test.go b/context/context_test.go
index 8da30c9a89b0..c5b5e7f12611 100644
--- a/context/context_test.go
+++ b/context/context_test.go
@@ -153,4 +153,9 @@ func TestDefaultValuesLoading(t *testing.T) {
 		t.Errorf("Default values not loaded from YAML file")
 		t.Fail()
 	}
+
+	if rs.Values["override"] != "notAtAll" {
+		t.Error("Default values should not override other values")
+		t.Fail()
+	}
 }