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

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