mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-20 00:10:04 -05:00
11 lines
183 B
Go
11 lines
183 B
Go
package null
|
|
|
|
import (
|
|
"testing"
|
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
)
|
|
|
|
func TestNullArtifact(t *testing.T) {
|
|
var _ packersdk.Artifact = new(NullArtifact)
|
|
}
|