airshipctl/cmd/version_test.go
2019-05-07 10:07:54 -05:00

16 lines
230 B
Go

package cmd_test
import (
"testing"
"github.com/ian-howell/airshipctl/internal/test"
)
func TestVersion(t *testing.T) {
tests := []test.CmdTest{{
Name: "version",
Command: "version",
}}
test.RunCmdTests(t, tests)
}