driftctl/pkg/resource/aws/aws_appautoscaling_policy_t...

31 lines
702 B
Go
Raw Normal View History

2021-09-24 09:13:08 +00:00
package aws_test
import (
"testing"
"github.com/cloudskiff/driftctl/test"
"github.com/cloudskiff/driftctl/test/acceptance"
)
func TestAcc_Aws_AppAutoscalingPolicy(t *testing.T) {
acceptance.Run(t, acceptance.AccTestCase{
TerraformVersion: "0.15.5",
Paths: []string{"./testdata/acc/aws_appautoscaling_policy"},
2021-10-08 15:28:28 +00:00
Args: []string{"scan", "--deep"},
2021-09-24 09:13:08 +00:00
Checks: []acceptance.AccCheck{
{
Env: map[string]string{
"AWS_REGION": "us-east-1",
},
Check: func(result *test.ScanResult, stdout string, err error) {
if err != nil {
t.Fatal(err)
}
result.AssertInfrastructureIsInSync()
result.AssertManagedCount(1)
},
},
},
})
}