mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-21 08:50:24 -05:00
11 lines
161 B
Go
11 lines
161 B
Go
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func TestVersionCommand_implements(t *testing.T) {
|
|
var _ cli.Command = &VersionCommand{}
|
|
}
|