update acceptance test function names

This commit is contained in:
John Engelman 2015-05-11 09:41:59 -05:00
parent b3d54cef4e
commit 3275ab0ba1
2 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@ import (
"github.com/awslabs/aws-sdk-go/service/route53"
)
func TestAccRoute53ZoneAssociation(t *testing.T) {
func TestAccRoute53ZoneAssociation_basic(t *testing.T) {
var zone route53.HostedZone
resource.Test(t, resource.TestCase{
@ -30,7 +30,7 @@ func TestAccRoute53ZoneAssociation(t *testing.T) {
})
}
func TestAccRoute53ZoneAssociationWithRegion(t *testing.T) {
func TestAccRoute53ZoneAssociation_region(t *testing.T) {
var zone route53.HostedZone
// record the initialized providers so that we can use them to

View File

@ -64,7 +64,7 @@ func TestCleanChangeID(t *testing.T) {
}
}
func TestAccRoute53Zone(t *testing.T) {
func TestAccRoute53Zone_basic(t *testing.T) {
var zone route53.GetHostedZoneOutput
var td route53.ResourceTagSet
@ -85,7 +85,7 @@ func TestAccRoute53Zone(t *testing.T) {
})
}
func TestAccRoute53PrivateZone(t *testing.T) {
func TestAccRoute53Zone_private_basic(t *testing.T) {
var zone route53.GetHostedZoneOutput
resource.Test(t, resource.TestCase{
@ -104,7 +104,7 @@ func TestAccRoute53PrivateZone(t *testing.T) {
})
}
func TestAccRoute53PrivateZoneWithRegion(t *testing.T) {
func TestAccRoute53Zone_private_region(t *testing.T) {
var zone route53.GetHostedZoneOutput
// record the initialized providers so that we can use them to