package aws import ( "testing" "github.com/hashicorp/terraform/helper/resource" ) func TestAccAWSDHCPOptions_importBasic(t *testing.T) { resourceName := "aws_vpc_dhcp_options.foo" resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, Steps: []resource.TestStep{ resource.TestStep{ Config: testAccDHCPOptionsConfig, }, resource.TestStep{ ResourceName: resourceName, ImportState: true, ImportStateVerify: true, }, }, }) }