github.com/koding/terraform@v0.6.4-0.20170608090606-5d7e0339779d/builtin/providers/librato/common_helpers_test.go (about)

     1  package librato
     2  
     3  import (
     4  	"log"
     5  	"testing"
     6  	"time"
     7  )
     8  
     9  func sleep(t *testing.T, amount time.Duration) func() {
    10  	return func() {
    11  		log.Printf("[INFO] Sleeping for %d seconds...", amount)
    12  		time.Sleep(amount * time.Second)
    13  	}
    14  }