2013-11-09 13:22:13 -08:00
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2018-01-22 17:21:10 -08:00
|
|
|
|
2020-12-17 13:29:25 -08:00
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
2013-11-09 13:22:13 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestExportArtifact_impl(t *testing.T) {
|
2020-11-19 12:17:11 -08:00
|
|
|
var _ packersdk.Artifact = new(ExportArtifact)
|
2013-11-09 13:22:13 -08:00
|
|
|
}
|