mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 10:21:20 -05:00
consolidate artifacts entirely remove local artifact object and get artifacts in the vmx builder the same way we do in the vmware iso builder
11 lines
163 B
Go
11 lines
163 B
Go
package common
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
func TestLocalArtifact_impl(t *testing.T) {
|
|
var _ packer.Artifact = new(artifact)
|
|
}
|