packer-cn/builder/vmware/iso/artifact_test.go

16 lines
249 B
Go
Raw Normal View History

2013-12-23 22:58:41 -07:00
package iso
2013-06-06 15:12:54 -07:00
import (
"testing"
2018-01-22 17:21:10 -08:00
"github.com/hashicorp/packer/packer"
2013-06-06 15:12:54 -07: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")
}
}