Add merging of CommandLine flags to Root command

This commit is contained in:
Albert Nigmatzianov
2017-04-19 10:49:22 +02:00
parent 37a4355faa
commit 458d79748e
2 changed files with 10 additions and 0 deletions

View File

@ -1147,6 +1147,14 @@ func TestGlobalNormFuncPropagation(t *testing.T) {
}
}
func TestFlagOnPflagCommandLine(t *testing.T) {
flagName := "flagOnCommandLine"
pflag.CommandLine.String(flagName, "", "about my flag")
r := fullSetupTest("--help")
checkResultContains(t, r, flagName)
}
func TestAddTemplateFunctions(t *testing.T) {
AddTemplateFunc("t", func() bool { return true })
AddTemplateFuncs(template.FuncMap{