diff --git a/command/version_test.go b/command/version_test.go new file mode 100644 index 0000000000..2a645690fa --- /dev/null +++ b/command/version_test.go @@ -0,0 +1,11 @@ +package command + +import ( + "testing" + + "github.com/mitchellh/cli" +) + +func TestVersionCommand_implements(t *testing.T) { + var _ cli.Command = &VersionCommand{} +}