packer-cn/builder/vmware/common/artifact_test.go
Megan Marsh fa12113eaf remove unused NewLocalArtifact
consolidate artifacts
entirely remove local artifact object and get artifacts in the vmx builder the same way we do in the vmware iso builder
2018-11-02 14:22:01 -07:00

12 lines
163 B
Go

package common
import (
"testing"
"github.com/hashicorp/packer/packer"
)
func TestLocalArtifact_impl(t *testing.T) {
var _ packer.Artifact = new(artifact)
}