driftctl/pkg/resource/azurerm/azurerm_subnet_test.go

26 lines
667 B
Go
Raw Normal View History

2021-10-01 08:28:16 +00:00
package azurerm_test
2021-11-19 09:38:18 +00:00
// Flacky test
// func TestAcc_Azure_Subnet(t *testing.T) {
// acceptance.Run(t, acceptance.AccTestCase{
// TerraformVersion: "0.15.5",
// Paths: []string{"./testdata/acc/azurerm_subnet"},
// Args: []string{
// "scan",
// "--to", "azure+tf",
// },
// Checks: []acceptance.AccCheck{
// {
// Check: func(result *test.ScanResult, stdout string, err error) {
// if err != nil {
// t.Fatal(err)
// }
// result.AssertInfrastructureIsInSync()
// // We should have one azurerm_virtual_network and two azurerm_subnet
// result.AssertManagedCount(3)
// },
// },
// },
// })
// }