blob: 8aa856acb2b8fab7610632cbf15b3e1866e51e63 [file] [log] [blame]
Jon Perritt59c68fc2014-10-06 17:32:15 -05001package gophercloud
2
3import (
4 "testing"
Jamie Hannafordb7a764d2014-10-27 14:40:55 +01005 "time"
Jon Perritt59c68fc2014-10-06 17:32:15 -05006
7 th "github.com/rackspace/gophercloud/testhelper"
8)
9
10func TestWaitFor(t *testing.T) {
Jon Perritt59c68fc2014-10-06 17:32:15 -050011 err = WaitFor(5, func() (bool, error) {
12 return true, nil
13 })
14 th.CheckNoErr(t, err)
15}