github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/builtin/providers/aws/import_aws_ebs_volume_test.go (about) 1 package aws 2 3 import ( 4 "testing" 5 6 "github.com/hashicorp/terraform/helper/resource" 7 ) 8 9 func TestAccAWSEBSVolume_importBasic(t *testing.T) { 10 resourceName := "aws_ebs_volume.test" 11 12 resource.Test(t, resource.TestCase{ 13 PreCheck: func() { testAccPreCheck(t) }, 14 Providers: testAccProviders, 15 Steps: []resource.TestStep{ 16 resource.TestStep{ 17 Config: testAccAwsEbsVolumeConfig, 18 }, 19 20 resource.TestStep{ 21 ResourceName: resourceName, 22 ImportState: true, 23 ImportStateVerify: true, 24 }, 25 }, 26 }) 27 }