command: version test

This commit is contained in:
Mitchell Hashimoto
2015-03-03 23:14:54 -08:00
parent a5c076851b
commit 9cbbe58253

11
command/version_test.go Normal file
View File

@@ -0,0 +1,11 @@
package command
import (
"testing"
"github.com/mitchellh/cli"
)
func TestVersionCommand_implements(t *testing.T) {
var _ cli.Command = &VersionCommand{}
}