31 lines
625 B
Go
31 lines
625 B
Go
package azurerm_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/snyk/driftctl/test"
|
|
"github.com/snyk/driftctl/test/acceptance"
|
|
)
|
|
|
|
func TestAcc_Azure_LoadBalancerRules(t *testing.T) {
|
|
acceptance.Run(t, acceptance.AccTestCase{
|
|
TerraformVersion: "0.15.5",
|
|
Paths: []string{"./testdata/acc/azurerm_lb_rule"},
|
|
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()
|
|
result.AssertManagedCount(1)
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|