packer/builder/null/artifact_export_test.go

15 lines
254 B
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package null
import (
"testing"
2018-01-22 20:21:10 -05:00
2020-12-17 16:29:25 -05:00
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
)
func TestNullArtifact(t *testing.T) {
var _ packersdk.Artifact = new(NullArtifact)
}