github.com/vtorhonen/terraform@v0.9.0-beta2.0.20170307220345-5d894e4ffda7/builtin/providers/rancher/import_rancher_registry_test.go (about) 1 package rancher 2 3 import ( 4 "testing" 5 6 "github.com/hashicorp/terraform/helper/resource" 7 ) 8 9 func TestAccRancherRegistry_importBasic(t *testing.T) { 10 resourceName := "rancher_registry.foo" 11 12 resource.Test(t, resource.TestCase{ 13 PreCheck: func() { testAccPreCheck(t) }, 14 Providers: testAccProviders, 15 CheckDestroy: testAccCheckRancherRegistryDestroy, 16 Steps: []resource.TestStep{ 17 resource.TestStep{ 18 Config: testAccRancherRegistryConfig, 19 }, 20 21 resource.TestStep{ 22 ResourceName: resourceName, 23 ImportState: true, 24 ImportStateVerify: true, 25 }, 26 }, 27 }) 28 }