package test import ( "testing" "github.com/gruntwork-io/terratest/modules/terraform" ) func TestExamplesIPAM(t *testing.T) { terraformOptions := &terraform.Options{ TerraformDir: "../examples/ipam", } defer terraform.Destroy(t, terraformOptions) terraform.InitAndApply(t, terraformOptions) terraform.ApplyAndIdempotent(t, terraformOptions) }