mirror of
https://github.com/octoleo/restic.git
synced 2024-11-14 01:04:05 +00:00
25 lines
497 B
Go
25 lines
497 B
Go
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"testing"
|
|
)
|
|
|
|
// TestFlags checks for double defined flags, the commands will panic on
|
|
// ParseFlags() when a shorthand flag is defined twice.
|
|
func TestFlags(t *testing.T) {
|
|
for _, cmd := range cmdRoot.Commands() {
|
|
t.Run(cmd.Name(), func(t *testing.T) {
|
|
cmd.Flags().SetOutput(ioutil.Discard)
|
|
err := cmd.ParseFlags([]string{"--help"})
|
|
if err.Error() == "pflag: help requested" {
|
|
err = nil
|
|
}
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
})
|
|
}
|
|
}
|