summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/awslabs/aws-sdk-go/service/route53/customizations_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/awslabs/aws-sdk-go/service/route53/customizations_test.go')
-rw-r--r--Godeps/_workspace/src/github.com/awslabs/aws-sdk-go/service/route53/customizations_test.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/Godeps/_workspace/src/github.com/awslabs/aws-sdk-go/service/route53/customizations_test.go b/Godeps/_workspace/src/github.com/awslabs/aws-sdk-go/service/route53/customizations_test.go
deleted file mode 100644
index f0fe7e954..000000000
--- a/Godeps/_workspace/src/github.com/awslabs/aws-sdk-go/service/route53/customizations_test.go
+++ /dev/null
@@ -1,20 +0,0 @@
-package route53_test
-
-import (
- "testing"
-
- "github.com/awslabs/aws-sdk-go/aws"
- "github.com/awslabs/aws-sdk-go/internal/util/utilassert"
- "github.com/awslabs/aws-sdk-go/service/route53"
-)
-
-func TestBuildCorrectURI(t *testing.T) {
- svc := route53.New(nil)
- req, _ := svc.GetHostedZoneRequest(&route53.GetHostedZoneInput{
- ID: aws.String("/hostedzone/ABCDEFG"),
- })
-
- req.Build()
-
- utilassert.Match(t, `\/hostedzone\/ABCDEFG$`, req.HTTPRequest.URL.String())
-}