mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
15 lines
261 B
Go
15 lines
261 B
Go
package bsusurrogate
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
func TestBuilder_ImplementsBuilder(t *testing.T) {
|
|
var raw interface{}
|
|
raw = &Builder{}
|
|
if _, ok := raw.(packer.Builder); !ok {
|
|
t.Fatal("Builder should be a builder")
|
|
}
|
|
}
|