2013-12-25 13:27:53 -05:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2020-11-19 15:17:11 -05:00
|
|
|
packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
|
2013-12-25 13:27:53 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestLocalArtifact_impl(t *testing.T) {
|
2020-11-19 15:17:11 -05:00
|
|
|
var _ packersdk.Artifact = new(artifact)
|
2013-12-25 13:27:53 -05:00
|
|
|
}
|