2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-10 13:10:26 +00:00
cointop/cmd/commands/test.go
2020-11-18 20:37:40 -08:00

34 lines
511 B
Go

package cmd
import (
"github.com/miguelmota/cointop/cointop"
"github.com/spf13/cobra"
)
// TestCmd ...
func TestCmd() *cobra.Command {
testCmd := &cobra.Command{
Use: "test",
Short: "Runs tests for Homebrew",
Long: `The test command runs tests for Homebrew`,
Run: func(cmd *cobra.Command, args []string) {
doTest()
},
}
return testCmd
}
// DoTest ...
func doTest() {
ct, err := cointop.NewCointop(&cointop.Config{
NoPrompts: true,
})
if err != nil {
panic(err)
}
ct.Exit()
}