remove chroot acc test

This commit is contained in:
Marin Salinas 2019-07-18 12:07:08 -05:00
parent e10b9fb708
commit e634caee0a
1 changed files with 0 additions and 31 deletions

View File

@ -1,31 +0,0 @@
package chroot
import (
"testing"
builderT "github.com/hashicorp/packer/helper/builder/testing"
)
func TestBuilderAcc_basic(t *testing.T) {
builderT.Test(t, builderT.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Builder: &Builder{},
Template: testBuilderAccBasic,
SkipArtifactTeardown: true,
})
}
func testAccPreCheck(t *testing.T) {
}
const testBuilderAccBasic = `
{
"builders": [{
"type": "test",
"region": "eu-west-2",
"source_omi": "ami-65efcc11",
"omi_name": "packer-test-{{timestamp}}",
"omi_virtualization_type": "hvm"
}]
}
`