blob: 6ee647732d4170f7273d1536d36d5f3e07c20358 [file] [log] [blame]
Jon Perrittd9a4bf72014-10-23 23:44:04 -05001package bootfromvolume
2
3import (
4 "testing"
5
6 th "github.com/rackspace/gophercloud/testhelper"
7 "github.com/rackspace/gophercloud/testhelper/client"
8)
9
10func TestCreateURL(t *testing.T) {
11 th.SetupHTTP()
12 defer th.TeardownHTTP()
13 c := client.ServiceClient()
14
15 th.CheckEquals(t, c.Endpoint+"os-volumes_boot", createURL(c))
16}