blob: cc13c4effab5eafe902e66620ebe677acdef20e7 [file] [log] [blame]
package flavors
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 TestGetURL(t *testing.T) {
actual := getURL(endpointClient(), "foo")
expected := endpoint + "flavors/foo"
th.CheckEquals(t, expected, actual)
}
func TestListURL(t *testing.T) {
}