github.com/jbronn/packer@v0.1.6-0.20140120165540-8a1364dbd817/builder/vmware/iso/artifact_test.go (about)

     1  package iso
     2  
     3  import (
     4  	"github.com/mitchellh/packer/packer"
     5  	"testing"
     6  )
     7  
     8  func TestArtifact_Impl(t *testing.T) {
     9  	var raw interface{}
    10  	raw = &Artifact{}
    11  	if _, ok := raw.(packer.Artifact); !ok {
    12  		t.Fatal("Artifact must be a proper artifact")
    13  	}
    14  }