planner/plan/command/command_test.go

37 lines
444 B
Go

package command_test
import (
"testing"
"go-mod.ewintr.nl/planner/plan/command"
)
func TestCommand(t *testing.T) {
t.Parallel()
cmds := []*command.Command{
{
Name: "default",
Default: true,
},
}
cli := command.CLI{
CMDS: cmds,
}
for _, tc := range []struct {
name string
args string
exp *command.Command
}{
{
name: "default",
exp: cmds[0],
},
} {
t.Run(tc.name, func(t *testing.T) {
})
}
}