Add test to make sure --set-string flag takes `null` as string

pull/4142/head
Elmar Ritsch 7 years ago
parent 272d9bc6ef
commit 7308e766e2

@ -80,6 +80,11 @@ func TestParseSet(t *testing.T) {
expect: map[string]interface{}{"boolean": "true"},
err: false,
},
{
str: "is_null=null",
expect: map[string]interface{}{"is_null": "null"},
err: false,
},
}
tests := []struct {
str string

Loading…
Cancel
Save