2013-06-06 18:12:54 -04:00
|
|
|
package vmware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-06-06 19:14:07 -04:00
|
|
|
"testing"
|
2013-06-06 18:12:54 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestArtifact_Impl(t *testing.T) {
|
|
|
|
var raw interface{}
|
|
|
|
raw = &Artifact{}
|
|
|
|
if _, ok := raw.(packer.Artifact); !ok {
|
|
|
|
t.Fatal("Artifact must be a proper artifact")
|
|
|
|
}
|
|
|
|
}
|