command: version tests

This commit is contained in:
Mitchell Hashimoto 2014-10-27 20:58:44 -07:00
parent a5a2c3ceb7
commit 356b48827b
1 changed files with 11 additions and 0 deletions

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{}
}