github.com/danp/terraform@v0.9.5-0.20170426144147-39d740081351/builtin/providers/opc/import_ip_reservation_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 TestAccOPCIPReservation_importBasic(t *testing.T) { 12 resourceName := "opc_compute_ip_reservation.test" 13 14 ri := acctest.RandInt() 15 config := fmt.Sprintf(testAccIPReservationBasic, ri) 16 17 resource.Test(t, resource.TestCase{ 18 PreCheck: func() { 19 testAccPreCheck(t) 20 }, 21 Providers: testAccProviders, 22 CheckDestroy: testAccCheckIPReservationDestroy, 23 Steps: []resource.TestStep{ 24 { 25 Config: config, 26 }, 27 { 28 ResourceName: resourceName, 29 ImportState: true, 30 ImportStateVerify: true, 31 }, 32 }, 33 }) 34 }