blob: 37e91425b5ae68d6aa2a70ec9b826558f7eeb476 [file] [log] [blame]
package apiversions
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(), "v1")
expected := endpoint + "v1/"
th.AssertEquals(t, expected, actual)
}
func TestListURL(t *testing.T) {
actual := listURL(endpointClient())
expected := endpoint
th.AssertEquals(t, expected, actual)
}