planner/plan/command/command_test.go

26 lines
305 B
Go
Raw Normal View History

2024-10-29 07:22:04 +01:00
package command_test
2024-11-01 07:31:21 +01:00
import (
"testing"
"go-mod.ewintr.nl/planner/plan/command"
)
func TestCommand(t *testing.T) {
t.Parallel()
for _, tc := range []struct {
name string
args string
exp *command.Command
}{
{
name: "default",
},
} {
t.Run(tc.name, func(t *testing.T) {
})
}
}