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