github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/builtin/providers/opc/import_ip_address_association_test.go (about)

     1  package opc
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/hashicorp/terraform/helper/acctest"
     7  	"github.com/hashicorp/terraform/helper/resource"
     8  )
     9  
    10  func TestAccOPCIPAddressAssociation_importBasic(t *testing.T) {
    11  	resourceName := "opc_compute_ip_address_association.test"
    12  
    13  	ri := acctest.RandInt()
    14  	resource.Test(t, resource.TestCase{
    15  		PreCheck:     func() { testAccPreCheck(t) },
    16  		Providers:    testAccProviders,
    17  		CheckDestroy: testAccCheckIPAddressAssociationDestroy,
    18  		Steps: []resource.TestStep{
    19  			{
    20  				Config: testAccIPAddressAssociationBasic(ri),
    21  			},
    22  			{
    23  				ResourceName:      resourceName,
    24  				ImportState:       true,
    25  				ImportStateVerify: true,
    26  			},
    27  		},
    28  	})
    29  }