mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 10:59:43 -05:00
14 lines
259 B
Go
14 lines
259 B
Go
package clone
|
|
|
|
import (
|
|
"github.com/hashicorp/packer/packer"
|
|
"testing"
|
|
)
|
|
|
|
func TestCloneBuilder_ImplementsBuilder(t *testing.T) {
|
|
var raw interface{}
|
|
raw = &Builder{}
|
|
if _, ok := raw.(packer.Builder); !ok {
|
|
t.Fatalf("Builder should be a builder")
|
|
}
|
|
}
|