Files
vault/command/version_test.go
Mitchell Hashimoto 9cbbe58253 command: version test
2015-03-03 23:14:54 -08:00

12 lines
161 B
Go

package command
import (
"testing"
"github.com/mitchellh/cli"
)
func TestVersionCommand_implements(t *testing.T) {
var _ cli.Command = &VersionCommand{}
}