blob: 93d829b42dbb273b2615f285ec83792554710d60 [file] [log] [blame]
Jon Perrittd9a4bf72014-10-23 23:44:04 -05001package bootfromvolume
2
3import (
4 "testing"
5
Jon Perritt27249f42016-02-18 10:35:59 -06006 th "github.com/gophercloud/gophercloud/testhelper"
7 "github.com/gophercloud/gophercloud/testhelper/client"
Jon Perrittd9a4bf72014-10-23 23:44:04 -05008)
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}