mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-22 10:31:08 -04:00
14 lines
255 B
Go
14 lines
255 B
Go
// Copyright IBM Corp. 2013, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package null
|
|
|
|
import (
|
|
"testing"
|
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
)
|
|
|
|
func TestNullArtifact(t *testing.T) {
|
|
var _ packersdk.Artifact = new(NullArtifact)
|
|
}
|