packer-cn/builder/qemu/builder_test.go

16 lines
257 B
Go
Raw Normal View History

package qemu
import (
"testing"
2016-07-26 15:42:04 -04:00
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
)
func TestBuilder_ImplementsBuilder(t *testing.T) {
var raw interface{}
raw = &Builder{}
if _, ok := raw.(packer.Builder); !ok {
t.Error("Builder must implement builder.")
}
}