2013-08-13 09:36:40 -07:00
|
|
|
package inspect
|
|
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
}
|
|
|
|
|
}
|