blob: aa5bfe68b29b50ea23e1e1b37b2fdc379bec309d [file] [log] [blame]
package cdncontainers
import (
"testing"
"github.com/rackspace/gophercloud"
th "github.com/rackspace/gophercloud/testhelper"
)
const endpoint = "http://localhost:57909/"
func endpointClient() *gophercloud.ServiceClient {
return &gophercloud.ServiceClient{Endpoint: endpoint}
}
func TestEnableURL(t *testing.T) {
actual := enableURL(endpointClient(), "foo")
expected := endpoint + "foo"
th.CheckEquals(t, expected, actual)
}