consul/command/version_test.go

13 lines
175 B
Go
Raw Normal View History

2013-12-19 11:22:08 -08:00
package command
import (
"testing"
"github.com/mitchellh/cli"
2013-12-19 11:22:08 -08:00
)
func TestVersionCommand_implements(t *testing.T) {
2017-05-22 20:18:53 +02:00
t.Parallel()
2013-12-19 11:22:08 -08:00
var _ cli.Command = &VersionCommand{}
}