mirror of
https://github.com/spf13/cobra
synced 2024-11-05 05:17:12 +00:00
fe08012edd
The name of the powershell completion test file did not match the actual powershell file. Signed-off-by: Marc Khouzam <marc.khouzam@gmail.com>
19 lines
392 B
Go
19 lines
392 B
Go
package cobra
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestPwshCompletionNoActiveHelp(t *testing.T) {
|
|
c := &Command{Use: "c", Run: emptyRun}
|
|
|
|
buf := new(bytes.Buffer)
|
|
assertNoErr(t, c.GenPowerShellCompletion(buf))
|
|
output := buf.String()
|
|
|
|
// check that active help is being disabled
|
|
activeHelpVar := activeHelpEnvVar(c.Name())
|
|
check(t, output, fmt.Sprintf("%s=0", activeHelpVar))
|
|
}
|