Files
Packer-Cn/builder/oracle/oci/builder_test.go
T

16 lines
253 B
Go
Raw Normal View History

2017-09-12 16:30:39 +01:00
package oci
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.Fatalf("Builder should be a builder")
}
}