provider/digitalocean: comment out test for relative DNS records

Until we hear back from DigitalOcean on whether this behavior is
supposed to be supported or not.
This commit is contained in:
Paul Hinze 2015-11-19 16:11:42 -06:00
parent 402df08047
commit 110bcccb19
1 changed files with 10 additions and 0 deletions

View File

@ -104,6 +104,15 @@ func TestAccDigitalOceanRecord_HostnameValue(t *testing.T) {
})
}
// This test fails with:
//
// POST https://api.digitalocean.com/v2/domains/foobar-test-terraform.com/records:
// 422 Data needs to end with a dot (.)
//
// Which seems like a behavior change on the DO API side. Opened support ticket
// #826791 to ask DigitalOcean about this, and we'll comment out the test for
// now. --phinze
/*
func TestAccDigitalOceanRecord_RelativeHostnameValue(t *testing.T) {
var record godo.DomainRecord
@ -130,6 +139,7 @@ func TestAccDigitalOceanRecord_RelativeHostnameValue(t *testing.T) {
},
})
}
*/
func TestAccDigitalOceanRecord_ExternalHostnameValue(t *testing.T) {
var record godo.DomainRecord