mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 18:04:11 -05:00
15 lines
231 B
Go
15 lines
231 B
Go
|
|
package fix
|
||
|
|
|
||
|
|
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")
|
||
|
|
}
|
||
|
|
}
|