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

16 lines
249 B
Go
Raw Normal View History

2013-12-24 00:58:41 -05:00
package iso
2013-06-06 18:12:54 -04:00
import (
"testing"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/packer"
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")
}
}