mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-26 00:31:18 -04:00
11 lines
169 B
Go
11 lines
169 B
Go
|
|
package docker
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/mitchellh/packer/packer"
|
||
|
|
"testing"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestExportArtifact_impl(t *testing.T) {
|
||
|
|
var _ packer.Artifact = new(ExportArtifact)
|
||
|
|
}
|