open-nomad/command/version_test.go

13 lines
175 B
Go
Raw Normal View History

2015-06-01 13:25:51 +00:00
package command
import (
"testing"
"github.com/mitchellh/cli"
)
func TestVersionCommand_implements(t *testing.T) {
2017-07-21 04:24:21 +00:00
t.Parallel()
2015-06-01 13:25:51 +00:00
var _ cli.Command = &VersionCommand{}
}