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