16 lines
299 B
Go
16 lines
299 B
Go
package googlecomputeimport
|
|
|
|
import (
|
|
"testing"
|
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
)
|
|
|
|
func TestArtifact_ImplementsArtifact(t *testing.T) {
|
|
var raw interface{}
|
|
raw = &Artifact{}
|
|
if _, ok := raw.(packersdk.Artifact); !ok {
|
|
t.Fatalf("Artifact should be a Artifact")
|
|
}
|
|
}
|