github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/builtin/providers/azurerm/import_arm_loadbalancer_probe_test.go (about) 1 package azurerm 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 TestAccAzureRMLoadBalancerProbe_importBasic(t *testing.T) { 12 resourceName := "azurerm_lb_probe.test" 13 14 ri := acctest.RandInt() 15 probeName := fmt.Sprintf("probe-%d", ri) 16 17 resource.Test(t, resource.TestCase{ 18 PreCheck: func() { testAccPreCheck(t) }, 19 Providers: testAccProviders, 20 CheckDestroy: testCheckAzureRMLoadBalancerDestroy, 21 Steps: []resource.TestStep{ 22 resource.TestStep{ 23 Config: testAccAzureRMLoadBalancerProbe_basic(ri, probeName), 24 }, 25 26 resource.TestStep{ 27 ResourceName: resourceName, 28 ImportState: true, 29 ImportStateVerify: true, 30 // location is deprecated and was never actually used 31 ImportStateVerifyIgnore: []string{"location"}, 32 }, 33 }, 34 }) 35 }