packer-cn/builder/vmware/artifact_test.go

15 lines
251 B
Go
Raw Normal View History

2013-06-06 18:12:54 -04:00
package vmware
import (
"github.com/mitchellh/packer/packer"
"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")
}
}