github.com/skyscape-cloud-services/terraform@v0.9.2-0.20170609144644-7ece028a1747/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 }