blob: 8aa856acb2b8fab7610632cbf15b3e1866e51e63 [file] [log] [blame]
package gophercloud
import (
"testing"
"time"
th "github.com/rackspace/gophercloud/testhelper"
)
func TestWaitFor(t *testing.T) {
err = WaitFor(5, func() (bool, error) {
return true, nil
})
th.CheckNoErr(t, err)
}