mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-02 21:41:55 -05:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
14 lines
254 B
Go
14 lines
254 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package null
|
|
|
|
import (
|
|
"testing"
|
|
|
|
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
|
|
)
|
|
|
|
func TestBuilder_implBuilder(t *testing.T) {
|
|
var _ packersdk.Builder = new(Builder)
|
|
}
|