8e4e314553
Squashed commit of the following: commit ccc020231780179d241d46eef7c0ba103366aed0 Author: Yandex.Cloud Bot <ycloud-bot@yandex.ru> Date: Tue Apr 9 14:38:30 2019 +0000 sync upstream
15 lines
251 B
Go
15 lines
251 B
Go
package yandex
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
)
|
|
|
|
func TestBuilder_ImplementsBuilder(t *testing.T) {
|
|
var raw interface{} = &Builder{}
|
|
if _, ok := raw.(packer.Builder); !ok {
|
|
t.Fatalf("Builder should be a builder")
|
|
}
|
|
}
|