Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
54be33d8f87777a68d97a7fcb7b9b894d9e2b005
/
.
/
util_test.go
blob: 5a15a005d35efa9352ac6fd8edaa66061aa7732a [
file
] [
log
] [
blame
]
package gophercloud
import (
"testing"
th "github.com/rackspace/gophercloud/testhelper"
)
func TestWaitFor(t *testing.T) {
err := WaitFor(5, func() (bool, error) {
return true, nil
})
th.CheckNoErr(t, err)
}