cdn operations; unit test stubs
diff --git a/rackspace/objectstorage/v1/cdncontainers/urls.go b/rackspace/objectstorage/v1/cdncontainers/urls.go
new file mode 100644
index 0000000..abcf238
--- /dev/null
+++ b/rackspace/objectstorage/v1/cdncontainers/urls.go
@@ -0,0 +1,19 @@
+package cdncontainers
+
+import "github.com/rackspace/gophercloud"
+
+func listURL(c *gophercloud.ServiceClient) string {
+ return c.Endpoint
+}
+
+func enableURL(c *gophercloud.ServiceClient, containerName string) string {
+ return c.ServiceURL(containerName)
+}
+
+func getURL(c *gophercloud.ServiceClient, containerName string) string {
+ return c.ServiceURL(containerName)
+}
+
+func updateURL(c *gophercloud.ServiceClient, containerName string) string {
+ return c.ServiceURL(containerName)
+}