Files

15 lines
254 B
Go
Raw Permalink Normal View History

// Copyright (c) HashiCorp, Inc.
2023-08-10 15:53:29 -07:00
// SPDX-License-Identifier: BUSL-1.1
package file
import (
"testing"
2020-12-17 13:29:25 -08:00
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
)
func TestNullArtifact(t *testing.T) {
2020-11-19 12:17:11 -08:00
var _ packersdk.Artifact = new(FileArtifact)
}