airshipctl/cmd/version_test.go

16 lines
230 B
Go
Raw Normal View History

2019-04-29 13:35:13 -05:00
package cmd_test
import (
"testing"
2019-05-07 10:07:54 -05:00
"github.com/ian-howell/airshipctl/internal/test"
2019-04-29 13:35:13 -05:00
)
func TestVersion(t *testing.T) {
tests := []test.CmdTest{{
Name: "version",
Command: "version",
}}
test.RunCmdTests(t, tests)
}