Skip to content

Commit 84afeb7

Browse files
committed
acc tests: ensure each resource has a _basic test
Helpful for breadth first acc test sweeps `-run '_basic$'`
1 parent 66c51d4 commit 84afeb7

33 files changed

Lines changed: 51 additions & 51 deletions

builtin/providers/aws/resource_aws_app_cookie_stickiness_policy_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/hashicorp/terraform/terraform"
1212
)
1313

14-
func TestAccAWSAppCookieStickinessPolicy(t *testing.T) {
14+
func TestAccAWSAppCookieStickinessPolicy_basic(t *testing.T) {
1515
resource.Test(t, resource.TestCase{
1616
PreCheck: func() { testAccPreCheck(t) },
1717
Providers: testAccProviders,

builtin/providers/aws/resource_aws_customer_gateway_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/hashicorp/terraform/terraform"
1212
)
1313

14-
func TestAccCustomerGateway(t *testing.T) {
14+
func TestAccCustomerGateway_basic(t *testing.T) {
1515
resource.Test(t, resource.TestCase{
1616
PreCheck: func() { testAccPreCheck(t) },
1717
Providers: testAccProviders,

builtin/providers/aws/resource_aws_db_instance_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/aws/aws-sdk-go/service/rds"
1515
)
1616

17-
func TestAccAWSDBInstance(t *testing.T) {
17+
func TestAccAWSDBInstance_basic(t *testing.T) {
1818
var v rds.DBInstance
1919

2020
resource.Test(t, resource.TestCase{

builtin/providers/aws/resource_aws_db_parameter_group_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/hashicorp/terraform/terraform"
1212
)
1313

14-
func TestAccAWSDBParameterGroup(t *testing.T) {
14+
func TestAccAWSDBParameterGroup_basic(t *testing.T) {
1515
var v rds.DBParameterGroup
1616

1717
resource.Test(t, resource.TestCase{

builtin/providers/aws/resource_aws_db_security_group_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/hashicorp/terraform/terraform"
1212
)
1313

14-
func TestAccAWSDBSecurityGroup(t *testing.T) {
14+
func TestAccAWSDBSecurityGroup_basic(t *testing.T) {
1515
var v rds.DBSecurityGroup
1616

1717
resource.Test(t, resource.TestCase{

builtin/providers/aws/resource_aws_db_subnet_group_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/aws/aws-sdk-go/service/rds"
1313
)
1414

15-
func TestAccAWSDBSubnetGroup(t *testing.T) {
15+
func TestAccAWSDBSubnetGroup_basic(t *testing.T) {
1616
var v rds.DBSubnetGroup
1717

1818
testCheck := func(*terraform.State) error {

builtin/providers/aws/resource_aws_ebs_volume_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/hashicorp/terraform/terraform"
1111
)
1212

13-
func TestAccAWSEBSVolume(t *testing.T) {
13+
func TestAccAWSEBSVolume_basic(t *testing.T) {
1414
var v ec2.Volume
1515
resource.Test(t, resource.TestCase{
1616
PreCheck: func() { testAccPreCheck(t) },

builtin/providers/aws/resource_aws_ecs_cluster_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/hashicorp/terraform/terraform"
1111
)
1212

13-
func TestAccAWSEcsCluster(t *testing.T) {
13+
func TestAccAWSEcsCluster_basic(t *testing.T) {
1414
resource.Test(t, resource.TestCase{
1515
PreCheck: func() { testAccPreCheck(t) },
1616
Providers: testAccProviders,

builtin/providers/aws/resource_aws_ecs_task_definition_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/hashicorp/terraform/terraform"
1111
)
1212

13-
func TestAccAWSEcsTaskDefinition(t *testing.T) {
13+
func TestAccAWSEcsTaskDefinition_basic(t *testing.T) {
1414
resource.Test(t, resource.TestCase{
1515
PreCheck: func() { testAccPreCheck(t) },
1616
Providers: testAccProviders,

builtin/providers/aws/resource_aws_elasticache_security_group_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/hashicorp/terraform/terraform"
1111
)
1212

13-
func TestAccAWSElasticacheSecurityGroup(t *testing.T) {
13+
func TestAccAWSElasticacheSecurityGroup_basic(t *testing.T) {
1414
resource.Test(t, resource.TestCase{
1515
PreCheck: func() { testAccPreCheck(t) },
1616
Providers: testAccProviders,

0 commit comments

Comments
 (0)