mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-20 08:20:06 -05:00
14 lines
236 B
Go
14 lines
236 B
Go
package validate
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/packer"
|
|
"testing"
|
|
)
|
|
|
|
func TestCommand_Impl(t *testing.T) {
|
|
var raw interface{}
|
|
raw = new(Command)
|
|
if _, ok := raw.(packer.Command); !ok {
|
|
t.Fatalf("must be a Command")
|
|
}
|
|
}
|