packer-cn/builder/vmware/iso/builder_acc_test.go

23 lines
447 B
Go
Raw Normal View History

package iso
import (
"io/ioutil"
"path/filepath"
"testing"
2020-12-17 16:29:25 -05:00
builderT "github.com/hashicorp/packer-plugin-sdk/acctest"
)
func TestBuilderAcc_basic(t *testing.T) {
templatePath := filepath.Join("testdata", "minimal.json")
bytes, err := ioutil.ReadFile(templatePath)
if err != nil {
t.Fatalf("failed to load template file %s", templatePath)
}
builderT.Test(t, builderT.TestCase{
Builder: &Builder{},
Template: string(bytes),
})
}