github.com/mohanarpit/terraform@v0.6.16-0.20160909104007-291f29853544/builtin/providers/aws/import_aws_s3_bucket_test.go (about)

     1  package aws
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/hashicorp/terraform/helper/acctest"
     7  	"github.com/hashicorp/terraform/helper/resource"
     8  )
     9  
    10  func TestAccAWSS3Bucket_importBasic(t *testing.T) {
    11  	resourceName := "aws_s3_bucket.bucket"
    12  	rInt := acctest.RandInt()
    13  
    14  	resource.Test(t, resource.TestCase{
    15  		PreCheck:     func() { testAccPreCheck(t) },
    16  		Providers:    testAccProviders,
    17  		CheckDestroy: testAccCheckAWSS3BucketDestroy,
    18  		Steps: []resource.TestStep{
    19  			resource.TestStep{
    20  				Config: testAccAWSS3BucketConfig(rInt),
    21  			},
    22  
    23  			resource.TestStep{
    24  				ResourceName:      resourceName,
    25  				ImportState:       true,
    26  				ImportStateVerify: true,
    27  				ImportStateVerifyIgnore: []string{
    28  					"force_destroy", "acl"},
    29  			},
    30  		},
    31  	})
    32  }